49 lines
1.0 KiB
Go
49 lines
1.0 KiB
Go
|
package errhttp
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
var _ Error = internalVariantAlsoNegotiates{}
|
||
|
var _ ServerError = internalVariantAlsoNegotiates{}
|
||
|
var _ VariantAlsoNegotiates = internalVariantAlsoNegotiates{}
|
||
|
|
||
|
var ErrVariantAlsoNegotiates error = VariantAlsoNegotiatesWrap(nil)
|
||
|
|
||
|
type VariantAlsoNegotiates interface {
|
||
|
ServerError
|
||
|
VariantAlsoNegotiates()
|
||
|
}
|
||
|
|
||
|
var _ VariantAlsoNegotiates = internalVariantAlsoNegotiates{}
|
||
|
|
||
|
type internalVariantAlsoNegotiates struct {
|
||
|
err error
|
||
|
}
|
||
|
|
||
|
func VariantAlsoNegotiatesWrap(err error) error {
|
||
|
return internalVariantAlsoNegotiates{
|
||
|
err:err,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (receiver internalVariantAlsoNegotiates) Error() string {
|
||
|
return receiver.err.Error()
|
||
|
}
|
||
|
|
||
|
func (internalVariantAlsoNegotiates) ErrHTTP() int {
|
||
|
return http.StatusVariantAlsoNegotiates
|
||
|
}
|
||
|
|
||
|
func (internalVariantAlsoNegotiates) ServerError() {
|
||
|
// Nothing here.
|
||
|
}
|
||
|
|
||
|
func (internalVariantAlsoNegotiates) VariantAlsoNegotiates() {
|
||
|
// Nothing here.
|
||
|
}
|
||
|
|
||
|
func (receiver internalVariantAlsoNegotiates) Unwrap() error {
|
||
|
return receiver.err
|
||
|
}
|