Files
gotenberg/app/handlers/converter/process/errors.go
Julien Neuhart e847c86baa huge refactoring
2018-03-29 20:13:19 +02:00

14 lines
272 B
Go

package process
type impossibleConversionError struct{}
func (e *impossibleConversionError) Error() string {
return "Impossible conversion"
}
type commandTimeoutError struct{}
func (e *commandTimeoutError) Error() string {
return "The command has reached timeout"
}