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

14 lines
321 B
Go

package context
type contentTypeNotFoundError struct{}
func (e *contentTypeNotFoundError) Error() string {
return "The 'Content-Type' was not found in request context"
}
type converterNotFoundError struct{}
func (e *converterNotFoundError) Error() string {
return "The converter was not found in request context"
}