mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-13 10:52:15 +01:00
14 lines
272 B
Go
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"
|
|
}
|