2017-02-06 20:58:13 +00:00
|
|
|
package errhttp
|
|
|
|
|
2023-02-16 19:36:53 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2023-08-14 12:03:00 +00:00
|
|
|
var _ Error = internalPreconditionRequired{}
|
|
|
|
var _ PreconditionRequired = internalPreconditionRequired{}
|
|
|
|
|
2023-02-16 19:36:53 +00:00
|
|
|
var ErrPreconditionRequired error = PreconditionRequiredWrap(errors.New("Precondition Required"))
|
|
|
|
|
2017-02-06 20:58:13 +00:00
|
|
|
type PreconditionRequired interface {
|
|
|
|
ClientError
|
|
|
|
PreconditionRequired()
|
|
|
|
}
|
|
|
|
|
|
|
|
type internalPreconditionRequired struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func PreconditionRequiredWrap(err error) error {
|
|
|
|
return internalPreconditionRequired{
|
|
|
|
err:err,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (receiver internalPreconditionRequired) Error() string {
|
|
|
|
return receiver.err.Error()
|
|
|
|
}
|
|
|
|
|
2023-02-16 20:01:00 +00:00
|
|
|
func (internalPreconditionRequired) ErrHTTP() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
2017-02-06 20:58:13 +00:00
|
|
|
func (internalPreconditionRequired) ClientError() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
|
|
|
func (internalPreconditionRequired) PreconditionRequired() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
2023-02-16 06:24:28 +00:00
|
|
|
func (receiver internalPreconditionRequired) Unwrap() error {
|
|
|
|
return receiver.err
|
|
|
|
}
|