mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
da0ca83377
Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
20 lines
579 B
Go
20 lines
579 B
Go
package errors
|
|
|
|
// This file contains all of the errors that can be generated from the
|
|
// docker/image component.
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/docker/distribution/registry/api/errcode"
|
|
)
|
|
|
|
var (
|
|
// ErrorCodeInvalidImageID is generated when image id specified is incorrectly formatted.
|
|
ErrorCodeInvalidImageID = errcode.Register(errGroup, errcode.ErrorDescriptor{
|
|
Value: "INVALIDIMAGEID",
|
|
Message: "image ID '%s' is invalid ",
|
|
Description: "The specified image id is incorrectly formatted",
|
|
HTTPStatusCode: http.StatusInternalServerError,
|
|
})
|
|
)
|