mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-11 18:02:14 +01:00
14 lines
321 B
Go
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"
|
|
}
|