mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ddae20c032
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
46 lines
870 B
Go
46 lines
870 B
Go
package libcontainerd
|
|
|
|
import "errors"
|
|
|
|
type liberr struct {
|
|
err error
|
|
}
|
|
|
|
func (e liberr) Error() string {
|
|
return e.err.Error()
|
|
}
|
|
|
|
func (e liberr) Cause() error {
|
|
return e.err
|
|
}
|
|
|
|
type notFoundErr struct {
|
|
liberr
|
|
}
|
|
|
|
func (notFoundErr) NotFound() {}
|
|
|
|
func newNotFoundError(err string) error { return notFoundErr{liberr{errors.New(err)}} }
|
|
func wrapNotFoundError(err error) error { return notFoundErr{liberr{err}} }
|
|
|
|
type invalidParamErr struct {
|
|
liberr
|
|
}
|
|
|
|
func (invalidParamErr) InvalidParameter() {}
|
|
|
|
func newInvalidParameterError(err string) error { return invalidParamErr{liberr{errors.New(err)}} }
|
|
|
|
type conflictErr struct {
|
|
liberr
|
|
}
|
|
|
|
func (conflictErr) ConflictErr() {}
|
|
|
|
func newConflictError(err string) error { return conflictErr{liberr{errors.New(err)}} }
|
|
|
|
type sysErr struct {
|
|
liberr
|
|
}
|
|
|
|
func wrapSystemError(err error) error { return sysErr{liberr{err}} }
|