2017-02-06 20:58:13 +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 = internalNotAcceptable{}
|
2023-08-14 12:50:41 +00:00
|
|
|
var _ ClientError = internalNotAcceptable{}
|
2023-08-14 12:03:00 +00:00
|
|
|
var _ NotAcceptable = internalNotAcceptable{}
|
|
|
|
|
2023-10-18 05:32:39 +00:00
|
|
|
var ClientErrorNotAcceptable ClientError = NotAcceptableWrap(nil).(NotAcceptable)
|
|
|
|
var ErrHTTPNotAcceptable Error = ClientErrorNotAcceptable
|
|
|
|
var ErrNotAcceptable error = ClientErrorNotAcceptable
|
2023-02-16 19:36:53 +00:00
|
|
|
|
2017-02-06 20:58:13 +00:00
|
|
|
type NotAcceptable interface {
|
|
|
|
ClientError
|
|
|
|
NotAcceptable()
|
|
|
|
}
|
|
|
|
|
|
|
|
type internalNotAcceptable struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func NotAcceptableWrap(err error) error {
|
|
|
|
return internalNotAcceptable{
|
|
|
|
err:err,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (receiver internalNotAcceptable) Error() string {
|
2023-10-01 02:30:28 +00:00
|
|
|
err := receiver.err
|
|
|
|
if nil == err {
|
|
|
|
return http.StatusText(receiver.ErrHTTP())
|
|
|
|
}
|
2017-02-06 20:58:13 +00:00
|
|
|
return receiver.err.Error()
|
|
|
|
}
|
|
|
|
|
2023-08-14 13:56:09 +00:00
|
|
|
func (internalNotAcceptable) ErrHTTP() int {
|
|
|
|
return http.StatusNotAcceptable
|
2023-02-16 20:01:00 +00:00
|
|
|
}
|
|
|
|
|
2017-02-06 20:58:13 +00:00
|
|
|
func (internalNotAcceptable) ClientError() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
|
|
|
func (internalNotAcceptable) NotAcceptable() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
2023-02-16 06:24:28 +00:00
|
|
|
|
|
|
|
func (receiver internalNotAcceptable) Unwrap() error {
|
|
|
|
return receiver.err
|
|
|
|
}
|