diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2022-12-31 12:49:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-31 12:49:37 +0100 |
commit | 3fef47b41c98392865d13fd21bbcec34236daf4f (patch) | |
tree | 16808c6ea9ffd2cc0438d11831fd3a7503d15056 /models/packages/package_file.go | |
parent | dce8887494268c99ba5da8d5152b5d1cc03cfb83 (diff) | |
download | gitea-3fef47b41c98392865d13fd21bbcec34236daf4f.tar.gz gitea-3fef47b41c98392865d13fd21bbcec34236daf4f.zip |
Use ErrInvalidArgument in packages (#22268)
Related to
https://github.com/go-gitea/gitea/pull/22262#discussion_r1059010774
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'models/packages/package_file.go')
-rw-r--r-- | models/packages/package_file.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/models/packages/package_file.go b/models/packages/package_file.go index 6d0fd185a0..7f794836dc 100644 --- a/models/packages/package_file.go +++ b/models/packages/package_file.go @@ -5,13 +5,13 @@ package packages import ( "context" - "errors" "strconv" "strings" "time" "code.gitea.io/gitea/models/db" "code.gitea.io/gitea/modules/timeutil" + "code.gitea.io/gitea/modules/util" "xorm.io/builder" ) @@ -22,9 +22,9 @@ func init() { var ( // ErrDuplicatePackageFile indicates a duplicated package file error - ErrDuplicatePackageFile = errors.New("Package file does exist already") + ErrDuplicatePackageFile = util.NewAlreadyExistErrorf("package file already exists") // ErrPackageFileNotExist indicates a package file not exist error - ErrPackageFileNotExist = errors.New("Package file does not exist") + ErrPackageFileNotExist = util.NewNotExistErrorf("package file does not exist") ) // EmptyFileKey is a named constant for an empty file key |