File: errors.go

package info (click to toggle)
golang-github-containers-common 0.66.0%2Bds2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,608 kB
  • sloc: makefile: 126; sh: 125
file content (13 lines) | stat: -rw-r--r-- 398 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
package types

import (
	"errors"
)

var (
	ErrArtifactUnamed           = errors.New("artifact is unnamed")
	ErrArtifactNotExist         = errors.New("artifact does not exist")
	ErrArtifactAlreadyExists    = errors.New("artifact already exists")
	ErrArtifactFileExists       = errors.New("file already exists in artifact")
	ErrArtifactBlobTitleInvalid = errors.New("artifact blob title invalid")
)