mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-14 03:12:14 +01:00
8 lines
143 B
Go
8 lines
143 B
Go
package converter
|
|
|
|
type noFileToConvertError struct{}
|
|
|
|
func (e *noFileToConvertError) Error() string {
|
|
return "There is no file to convert"
|
|
}
|