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

8 lines
146 B
Go

package handlers
type requestHasNoContentError struct{}
func (e *requestHasNoContentError) Error() string {
return "Request has not content"
}