go-errhttp/variantaisonegotiates.go

45 lines
989 B
Go
Raw Normal View History

2017-02-06 21:14:15 +00:00
package errhttp
var _ Error = internalVariantAlsoNegotiates{}
var _ ServerError = internalVariantAlsoNegotiates{}
var _ VariantAlsoNegotiates = internalVariantAlsoNegotiates{}
var ErrVariantAlsoNegotiates error = VariantAlsoNegotiatesWrap(nil)
2017-02-06 21:14:15 +00:00
type VariantAlsoNegotiates interface {
ServerError
VariantAlsoNegotiates()
}
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 {
return receiver.err.Error()
}
func (internalVariantAlsoNegotiates) ErrHTTP() {
// Nothing here.
}
2017-02-06 21:14:15 +00:00
func (internalVariantAlsoNegotiates) ServerError() {
// Nothing here.
}
func (internalVariantAlsoNegotiates) VariantAlsoNegotiates() {
// Nothing here.
}
func (receiver internalVariantAlsoNegotiates) Unwrap() error {
return receiver.err
}