mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-27 10:47:54 +00:00
This requires updating all import paths throughout, and a matching buildah update to interoperate. I can't figure out the reason for go.mod tracking github.com/containers/image v3.0.2+incompatible // indirect ((go mod graph) lists it as a direct dependency of libpod, but (go list -json -m all) lists it as an indirect dependency), but at least looking at the vendor subdirectory, it doesn't seem to be actually used in the built binaries. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
69 lines
1.9 KiB
Go
69 lines
1.9 KiB
Go
package errdefs // import "github.com/docker/docker/errdefs"
|
|
|
|
// ErrNotFound signals that the requested object doesn't exist
|
|
type ErrNotFound interface {
|
|
NotFound()
|
|
}
|
|
|
|
// ErrInvalidParameter signals that the user input is invalid
|
|
type ErrInvalidParameter interface {
|
|
InvalidParameter()
|
|
}
|
|
|
|
// ErrConflict signals that some internal state conflicts with the requested action and can't be performed.
|
|
// A change in state should be able to clear this error.
|
|
type ErrConflict interface {
|
|
Conflict()
|
|
}
|
|
|
|
// ErrUnauthorized is used to signify that the user is not authorized to perform a specific action
|
|
type ErrUnauthorized interface {
|
|
Unauthorized()
|
|
}
|
|
|
|
// ErrUnavailable signals that the requested action/subsystem is not available.
|
|
type ErrUnavailable interface {
|
|
Unavailable()
|
|
}
|
|
|
|
// ErrForbidden signals that the requested action cannot be performed under any circumstances.
|
|
// When a ErrForbidden is returned, the caller should never retry the action.
|
|
type ErrForbidden interface {
|
|
Forbidden()
|
|
}
|
|
|
|
// ErrSystem signals that some internal error occurred.
|
|
// An example of this would be a failed mount request.
|
|
type ErrSystem interface {
|
|
System()
|
|
}
|
|
|
|
// ErrNotModified signals that an action can't be performed because it's already in the desired state
|
|
type ErrNotModified interface {
|
|
NotModified()
|
|
}
|
|
|
|
// ErrNotImplemented signals that the requested action/feature is not implemented on the system as configured.
|
|
type ErrNotImplemented interface {
|
|
NotImplemented()
|
|
}
|
|
|
|
// ErrUnknown signals that the kind of error that occurred is not known.
|
|
type ErrUnknown interface {
|
|
Unknown()
|
|
}
|
|
|
|
// ErrCancelled signals that the action was cancelled.
|
|
type ErrCancelled interface {
|
|
Cancelled()
|
|
}
|
|
|
|
// ErrDeadline signals that the deadline was reached before the action completed.
|
|
type ErrDeadline interface {
|
|
DeadlineExceeded()
|
|
}
|
|
|
|
// ErrDataLoss indicates that data was lost or there is data corruption.
|
|
type ErrDataLoss interface {
|
|
DataLoss()
|
|
}
|