go-errhttp/insufficientstorage.go

48 lines
942 B
Go
Raw Normal View History

2017-02-06 21:14:15 +00:00
package errhttp
import (
"errors"
)
var _ Error = internalInsufficientStorage{}
var _ InsufficientStorage = internalInsufficientStorage{}
var ErrInsufficientStorage error = InsufficientStorageWrap(errors.New("Insufficient Storage"))
2017-02-06 21:14:15 +00:00
type InsufficientStorage interface {
ServerError
InsufficientStorage()
}
var _ InsufficientStorage = internalInsufficientStorage{}
2017-02-06 21:14:15 +00:00
type internalInsufficientStorage struct {
err error
}
func InsufficientStorageWrap(err error) error {
return internalInsufficientStorage{
err:err,
}
}
func (receiver internalInsufficientStorage) Error() string {
return receiver.err.Error()
}
func (internalInsufficientStorage) ErrHTTP() {
// Nothing here.
}
2017-02-06 21:14:15 +00:00
func (internalInsufficientStorage) ServerError() {
// Nothing here.
}
func (internalInsufficientStorage) InsufficientStorage() {
// Nothing here.
}
func (receiver internalInsufficientStorage) Unwrap() error {
return receiver.err
}