14 lines
253 B
Go
14 lines
253 B
Go
|
package mrfusion
|
||
|
|
||
|
// General errors.
|
||
|
const (
|
||
|
ErrUpstreamTimeout = Error("request to backend timed out")
|
||
|
)
|
||
|
|
||
|
// Error is a domain error encountered while processing mrfusion requests
|
||
|
type Error string
|
||
|
|
||
|
func (e Error) Error() string {
|
||
|
return string(e)
|
||
|
}
|