mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
79 lines
2.5 KiB
Go
79 lines
2.5 KiB
Go
package errdefs
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
cerrdefs "github.com/containerd/errdefs"
|
|
)
|
|
|
|
// IsNotFound returns if the passed in error is an [ErrNotFound],
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsNotFound]
|
|
var IsNotFound = cerrdefs.IsNotFound
|
|
|
|
// IsInvalidParameter returns if the passed in error is an [ErrInvalidParameter].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsInvalidArgument]
|
|
var IsInvalidParameter = cerrdefs.IsInvalidArgument
|
|
|
|
// IsConflict returns if the passed in error is an [ErrConflict].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsConflict]
|
|
var IsConflict = cerrdefs.IsConflict
|
|
|
|
// IsUnauthorized returns if the passed in error is an [ErrUnauthorized].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsUnauthorized]
|
|
var IsUnauthorized = cerrdefs.IsUnauthorized
|
|
|
|
// IsUnavailable returns if the passed in error is an [ErrUnavailable].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsUnavailable]
|
|
var IsUnavailable = cerrdefs.IsUnavailable
|
|
|
|
// IsForbidden returns if the passed in error is an [ErrForbidden].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsPermissionDenied]
|
|
var IsForbidden = cerrdefs.IsPermissionDenied
|
|
|
|
// IsSystem returns if the passed in error is an [ErrSystem].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsInternal]
|
|
var IsSystem = cerrdefs.IsInternal
|
|
|
|
// IsNotModified returns if the passed in error is an [ErrNotModified].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsNotModified]
|
|
var IsNotModified = cerrdefs.IsNotModified
|
|
|
|
// IsNotImplemented returns if the passed in error is an [ErrNotImplemented].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsNotImplemented]
|
|
var IsNotImplemented = cerrdefs.IsNotImplemented
|
|
|
|
// IsUnknown returns if the passed in error is an [ErrUnknown].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsUnknown]
|
|
var IsUnknown = cerrdefs.IsUnknown
|
|
|
|
// IsCancelled returns if the passed in error is an [ErrCancelled].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsCanceled]
|
|
var IsCancelled = cerrdefs.IsCanceled
|
|
|
|
// IsDeadline returns if the passed in error is an [ErrDeadline].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsDeadlineExceeded]
|
|
var IsDeadline = cerrdefs.IsDeadlineExceeded
|
|
|
|
// IsDataLoss returns if the passed in error is an [ErrDataLoss].
|
|
//
|
|
// Deprecated: use containerd [cerrdefs.IsDataLoss]
|
|
var IsDataLoss = cerrdefs.IsDataLoss
|
|
|
|
// IsContext returns if the passed in error is due to context cancellation or deadline exceeded.
|
|
func IsContext(err error) bool {
|
|
return errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded)
|
|
}
|