2017-02-06 21:14:15 +00:00
|
|
|
package errhttp
|
|
|
|
|
2023-02-16 19:36:53 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var ErrNetworkAuthenticationRequired error = NetworkAuthenticationRequiredWrap(errors.New("Network Authentication Required"))
|
|
|
|
|
2017-02-06 21:14:15 +00:00
|
|
|
type NetworkAuthenticationRequired interface {
|
|
|
|
ServerError
|
|
|
|
NetworkAuthenticationRequired()
|
|
|
|
}
|
|
|
|
|
2023-02-16 06:24:28 +00:00
|
|
|
var _ NetworkAuthenticationRequired = internalNetworkAuthenticationRequired{}
|
|
|
|
|
2017-02-06 21:14:15 +00:00
|
|
|
type internalNetworkAuthenticationRequired struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func NetworkAuthenticationRequiredWrap(err error) error {
|
|
|
|
return internalNetworkAuthenticationRequired{
|
|
|
|
err:err,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (receiver internalNetworkAuthenticationRequired) Error() string {
|
|
|
|
return receiver.err.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (receiver internalNetworkAuthenticationRequired) Err() error {
|
|
|
|
return receiver.err
|
|
|
|
}
|
|
|
|
|
2023-02-16 20:01:00 +00:00
|
|
|
func (internalNetworkAuthenticationRequired) ErrHTTP() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
2017-02-06 21:14:15 +00:00
|
|
|
func (internalNetworkAuthenticationRequired) ServerError() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
|
|
|
func (internalNetworkAuthenticationRequired) NetworkAuthenticationRequired() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
2023-02-16 06:24:28 +00:00
|
|
|
|
|
|
|
func (receiver internalNetworkAuthenticationRequired) Unwrap() error {
|
|
|
|
return receiver.err
|
|
|
|
}
|