2017-02-06 21:14:15 +00:00
|
|
|
package errhttp
|
|
|
|
|
2023-08-14 12:03:00 +00:00
|
|
|
var _ Error = internalInsufficientStorage{}
|
2023-08-14 12:50:41 +00:00
|
|
|
var _ ServerError = internalInsufficientStorage{}
|
2023-08-14 12:03:00 +00:00
|
|
|
var _ InsufficientStorage = internalInsufficientStorage{}
|
|
|
|
|
2023-08-14 12:30:30 +00:00
|
|
|
var ErrInsufficientStorage error = InsufficientStorageWrap(nil)
|
2023-02-16 19:36:53 +00:00
|
|
|
|
2017-02-06 21:14:15 +00:00
|
|
|
type InsufficientStorage interface {
|
|
|
|
ServerError
|
|
|
|
InsufficientStorage()
|
|
|
|
}
|
|
|
|
|
2023-02-16 06:24:28 +00:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2023-02-16 20:01:00 +00:00
|
|
|
func (internalInsufficientStorage) ErrHTTP() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
2017-02-06 21:14:15 +00:00
|
|
|
func (internalInsufficientStorage) ServerError() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
|
|
|
|
|
|
|
func (internalInsufficientStorage) InsufficientStorage() {
|
|
|
|
// Nothing here.
|
|
|
|
}
|
2023-02-16 06:24:28 +00:00
|
|
|
|
|
|
|
func (receiver internalInsufficientStorage) Unwrap() error {
|
|
|
|
return receiver.err
|
|
|
|
}
|