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

8 lines
152 B
Go

package app
type appConfigError struct{}
func (e *appConfigError) Error() string {
return "A fatal error occured while setting up the application"
}