2017-02-06 21:14:15 +00:00
|
|
|
package errhttp
|
|
|
|
|
2023-08-14 13:56:09 +00:00
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2023-08-14 12:03:00 +00:00
|
|
|
var _ Error = internalVariantAlsoNegotiates{}
|
2023-08-14 12:50:41 +00:00
|
|
|
var _ ServerError = internalVariantAlsoNegotiates{}
|
2023-08-14 12:03:00 +00:00
|
|
|
var _ VariantAlsoNegotiates = internalVariantAlsoNegotiates{}
|
|
|
|
|
2023-10-18 05:32:39 +00:00
|
|
|
var ServerErrorVariantAlsoNegotiates ServerError = VariantAlsoNegotiatesWrap(nil).(VariantAlsoNegotiates)
|
|
|
|
var ErrHTTPVariantAlsoNegotiates Error = ServerErrorVariantAlsoNegotiates
|
|
|
|
var ErrVariantAlsoNegotiates error = ServerErrorVariantAlsoNegotiates
|
2023-02-16 19:36:53 +00:00
|
|
|
|
2017-02-06 21:14:15 +00:00
|
|
|
type VariantAlsoNegotiates interface {
|
|
|
|
ServerError
|
|
|
|
VariantAlsoNegotiates()
|
|
|
|
}
|
|
|
|
|
2023-02-16 06:24:28 +00:00
|
|
|
var _ VariantAlsoNegotiates = internalVariantAlsoNegotiates{}
|
|
|
|
|
2017-02-06 21:14:15 +00:00
|
|
|
type internalVariantAlsoNegotiates struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func VariantAlsoNegotiatesWrap(err error) error {
|
|
|
|
return internalVariantAlsoNegotiates{
|
|
|
|
err:err,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (receiver internalVariantAlsoNegotiates) Error() string {
|
2023-10-01 02:30:28 +00:00
|
|
|
err := receiver.err
|
|
|
|
if nil == err {
|
|
|
|
return http.StatusText(receiver.ErrHTTP())
|
|
|
|
}
|
|
|
|
return err.Error()
|
2017-02-06 21:14:15 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 13:56:09 +00:00
|
|
|
func (internalVariantAlsoNegotiates) ErrHTTP() int {
|
|
|
|
return http.StatusVariantAlsoNegotiates
|
2023-02-16 20:01:00 +00:00
|
|
|
}
|
|
|
|
|
2017-02-06 21:14:15 +00:00
|
|
|
func (internalVariantAlsoNegotiates) ServerError() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
|
|
|
func (internalVariantAlsoNegotiates) VariantAlsoNegotiates() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
2023-02-16 06:24:28 +00:00
|
|
|
|
|
|
|
func (receiver internalVariantAlsoNegotiates) Unwrap() error {
|
|
|
|
return receiver.err
|
|
|
|
}
|