go-errhttp/uritoolong.go

47 lines
714 B
Go
Raw Normal View History

2019-07-19 23:50:18 +00:00
package errhttp
import (
"errors"
)
var ErrURITooLong error = URITooLongWrap(errors.New("URI Too Long"))
2019-07-19 23:50:18 +00:00
type URITooLong interface {
ClientError
URITooLong()
}
type internalURITooLong struct {
err error
}
func URITooLongWrap(err error) error {
return internalURITooLong{
err:err,
}
}
func (receiver internalURITooLong) Error() string {
return receiver.err.Error()
}
func (receiver internalURITooLong) Err() error {
return receiver.err
}
func (internalURITooLong) ErrHTTP() {
// Nothing here.
}
2019-07-19 23:50:18 +00:00
func (internalURITooLong) ClientError() {
// Nothing here.
}
func (internalURITooLong) URITooLong() {
// Nothing here.
}
func (receiver internalURITooLong) Unwrap() error {
return receiver.err
}