2015-03-16 09:04:27 +01:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2015-03-26 22:11:47 +01:00
|
|
|
type ErrNameReserved struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrNameReserved(err error) bool {
|
|
|
|
_, ok := err.(ErrNameReserved)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrNameReserved) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("name is reserved [name: %s]", err.Name)
|
2015-03-26 22:11:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type ErrNamePatternNotAllowed struct {
|
|
|
|
Pattern string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrNamePatternNotAllowed(err error) bool {
|
|
|
|
_, ok := err.(ErrNamePatternNotAllowed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrNamePatternNotAllowed) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("name pattern is not allowed [pattern: %s]", err.Pattern)
|
2015-03-26 22:11:47 +01:00
|
|
|
}
|
|
|
|
|
2015-03-18 02:51:39 +01:00
|
|
|
// ____ ___
|
|
|
|
// | | \______ ___________
|
|
|
|
// | | / ___// __ \_ __ \
|
|
|
|
// | | /\___ \\ ___/| | \/
|
|
|
|
// |______//____ >\___ >__|
|
|
|
|
// \/ \/
|
|
|
|
|
2015-03-26 22:11:47 +01:00
|
|
|
type ErrUserAlreadyExist struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrUserAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrUserAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserAlreadyExist) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("user already exists [name: %s]", err.Name)
|
2015-03-26 22:11:47 +01:00
|
|
|
}
|
|
|
|
|
2015-08-05 05:14:17 +02:00
|
|
|
type ErrUserNotExist struct {
|
|
|
|
UID int64
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrUserNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrUserNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserNotExist) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("user does not exist [uid: %d, name: %s]", err.UID, err.Name)
|
2015-08-05 05:14:17 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 22:11:47 +01:00
|
|
|
type ErrEmailAlreadyUsed struct {
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrEmailAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrEmailAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrEmailAlreadyUsed) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("e-mail has been used [email: %s]", err.Email)
|
2015-03-26 22:11:47 +01:00
|
|
|
}
|
|
|
|
|
2015-03-18 02:51:39 +01:00
|
|
|
type ErrUserOwnRepos struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrUserOwnRepos(err error) bool {
|
|
|
|
_, ok := err.(ErrUserOwnRepos)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserOwnRepos) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("user still has ownership of repositories [uid: %d]", err.UID)
|
2015-03-18 02:51:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type ErrUserHasOrgs struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrUserHasOrgs(err error) bool {
|
|
|
|
_, ok := err.(ErrUserHasOrgs)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUserHasOrgs) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("user still has membership of organizations [uid: %d]", err.UID)
|
2015-03-18 02:51:39 +01:00
|
|
|
}
|
|
|
|
|
2015-08-06 16:48:11 +02:00
|
|
|
// __________ ___. .__ .__ ____ __.
|
|
|
|
// \______ \__ _\_ |__ | | |__| ____ | |/ _|____ ___.__.
|
|
|
|
// | ___/ | \ __ \| | | |/ ___\ | <_/ __ < | |
|
|
|
|
// | | | | / \_\ \ |_| \ \___ | | \ ___/\___ |
|
|
|
|
// |____| |____/|___ /____/__|\___ > |____|__ \___ > ____|
|
|
|
|
// \/ \/ \/ \/\/
|
|
|
|
|
2015-11-19 03:21:47 +01:00
|
|
|
type ErrKeyUnableVerify struct {
|
|
|
|
Result string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrKeyUnableVerify(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyUnableVerify)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyUnableVerify) Error() string {
|
|
|
|
return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result)
|
|
|
|
}
|
|
|
|
|
2015-08-06 16:48:11 +02:00
|
|
|
type ErrKeyNotExist struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrKeyNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyNotExist) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("public key does not exist [id: %d]", err.ID)
|
2015-08-06 16:48:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type ErrKeyAlreadyExist struct {
|
|
|
|
OwnerID int64
|
|
|
|
Content string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrKeyAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyAlreadyExist) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("public key already exists [owner_id: %d, content: %s]", err.OwnerID, err.Content)
|
2015-08-06 16:48:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type ErrKeyNameAlreadyUsed struct {
|
|
|
|
OwnerID int64
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrKeyNameAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrKeyNameAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrKeyNameAlreadyUsed) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name)
|
2015-08-06 16:48:11 +02:00
|
|
|
}
|
|
|
|
|
2015-11-19 03:21:47 +01:00
|
|
|
type ErrDeployKeyNotExist struct {
|
|
|
|
ID int64
|
|
|
|
KeyID int64
|
|
|
|
RepoID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrDeployKeyNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrDeployKeyNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrDeployKeyNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("Deploy key does not exist [id: %d, key_id: %d, repo_id: %d]", err.ID, err.KeyID, err.RepoID)
|
|
|
|
}
|
|
|
|
|
2015-08-06 16:48:11 +02:00
|
|
|
type ErrDeployKeyAlreadyExist struct {
|
|
|
|
KeyID int64
|
|
|
|
RepoID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrDeployKeyAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrDeployKeyAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrDeployKeyAlreadyExist) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("public key already exists [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID)
|
2015-08-06 16:48:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type ErrDeployKeyNameAlreadyUsed struct {
|
|
|
|
RepoID int64
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrDeployKeyNameAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrDeployKeyNameAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrDeployKeyNameAlreadyUsed) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("public key already exists [repo_id: %d, name: %s]", err.RepoID, err.Name)
|
2015-08-06 16:48:11 +02:00
|
|
|
}
|
|
|
|
|
2015-09-02 08:40:15 +02:00
|
|
|
// _____ ___________ __
|
|
|
|
// / _ \ ____ ____ ____ ______ _____\__ ___/___ | | __ ____ ____
|
|
|
|
// / /_\ \_/ ___\/ ___\/ __ \ / ___// ___/ | | / _ \| |/ // __ \ / \
|
|
|
|
// / | \ \__\ \__\ ___/ \___ \ \___ \ | |( <_> ) <\ ___/| | \
|
|
|
|
// \____|__ /\___ >___ >___ >____ >____ > |____| \____/|__|_ \\___ >___| /
|
|
|
|
// \/ \/ \/ \/ \/ \/ \/ \/ \/
|
|
|
|
|
|
|
|
type ErrAccessTokenNotExist struct {
|
|
|
|
SHA string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrAccessTokenNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrAccessTokenNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrAccessTokenNotExist) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA)
|
2015-09-02 08:40:15 +02:00
|
|
|
}
|
|
|
|
|
2015-03-18 02:51:39 +01:00
|
|
|
// ________ .__ __ .__
|
|
|
|
// \_____ \_______ _________ ____ |__|____________ _/ |_|__| ____ ____
|
|
|
|
// / | \_ __ \/ ___\__ \ / \| \___ /\__ \\ __\ |/ _ \ / \
|
|
|
|
// / | \ | \/ /_/ > __ \| | \ |/ / / __ \| | | ( <_> ) | \
|
|
|
|
// \_______ /__| \___ (____ /___| /__/_____ \(____ /__| |__|\____/|___| /
|
|
|
|
// \/ /_____/ \/ \/ \/ \/ \/
|
|
|
|
|
|
|
|
type ErrLastOrgOwner struct {
|
|
|
|
UID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrLastOrgOwner(err error) bool {
|
|
|
|
_, ok := err.(ErrLastOrgOwner)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrLastOrgOwner) Error() string {
|
2015-11-04 00:40:52 +01:00
|
|
|
return fmt.Sprintf("user is the last member of owner team [uid: %d]", err.UID)
|
2015-03-18 02:51:39 +01:00
|
|
|
}
|
|
|
|
|
2015-03-16 09:04:27 +01:00
|
|
|
// __________ .__ __
|
|
|
|
// \______ \ ____ ______ ____ _____|__|/ |_ ___________ ___.__.
|
|
|
|
// | _// __ \\____ \ / _ \/ ___/ \ __\/ _ \_ __ < | |
|
|
|
|
// | | \ ___/| |_> > <_> )___ \| || | ( <_> ) | \/\___ |
|
|
|
|
// |____|_ /\___ > __/ \____/____ >__||__| \____/|__| / ____|
|
|
|
|
// \/ \/|__| \/ \/
|
|
|
|
|
|
|
|
type ErrRepoNotExist struct {
|
|
|
|
ID int64
|
|
|
|
UID int64
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrRepoNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("repository does not exist [id: %d, uid: %d, name: %s]", err.ID, err.UID, err.Name)
|
|
|
|
}
|
2015-08-05 12:26:18 +02:00
|
|
|
|
2015-08-08 11:10:34 +02:00
|
|
|
type ErrRepoAlreadyExist struct {
|
|
|
|
Uname string
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrRepoAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrRepoAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrRepoAlreadyExist) Error() string {
|
2015-08-27 17:06:14 +02:00
|
|
|
return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name)
|
|
|
|
}
|
|
|
|
|
2015-11-04 00:40:52 +01:00
|
|
|
type ErrInvalidCloneAddr struct {
|
|
|
|
IsURLError bool
|
|
|
|
IsInvalidPath bool
|
|
|
|
IsPermissionDenied bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrInvalidCloneAddr(err error) bool {
|
|
|
|
_, ok := err.(ErrInvalidCloneAddr)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrInvalidCloneAddr) Error() string {
|
|
|
|
return fmt.Sprintf("invalid clone address [is_url_error: %v, is_invalid_path: %v, is_permission_denied: %v]",
|
|
|
|
err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied)
|
|
|
|
}
|
|
|
|
|
2015-11-05 03:57:10 +01:00
|
|
|
type ErrUpdateTaskNotExist struct {
|
|
|
|
UUID string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrUpdateTaskNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrUpdateTaskNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUpdateTaskNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID)
|
|
|
|
}
|
|
|
|
|
2015-11-16 05:52:46 +01:00
|
|
|
type ErrReleaseAlreadyExist struct {
|
|
|
|
TagName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrReleaseAlreadyExist(err error) bool {
|
|
|
|
_, ok := err.(ErrReleaseAlreadyExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrReleaseAlreadyExist) Error() string {
|
|
|
|
return fmt.Sprintf("Release tag already exist [tag_name: %s]", err.TagName)
|
|
|
|
}
|
|
|
|
|
|
|
|
type ErrReleaseNotExist struct {
|
|
|
|
TagName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrReleaseNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrReleaseNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrReleaseNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("Release tag does not exist [tag_name: %s]", err.TagName)
|
|
|
|
}
|
|
|
|
|
2015-08-27 17:06:14 +02:00
|
|
|
// __ __ ___. .__ __
|
|
|
|
// / \ / \ ____\_ |__ | |__ ____ ____ | | __
|
|
|
|
// \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ /
|
|
|
|
// \ /\ ___/| \_\ \ Y ( <_> | <_> ) <
|
|
|
|
// \__/\ / \___ >___ /___| /\____/ \____/|__|_ \
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
|
|
|
type ErrWebhookNotExist struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrWebhookNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrWebhookNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrWebhookNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("webhook does not exist [id: %d]", err.ID)
|
2015-08-08 11:10:34 +02:00
|
|
|
}
|
|
|
|
|
2015-08-12 11:04:23 +02:00
|
|
|
// .___
|
|
|
|
// | | ______ ________ __ ____
|
|
|
|
// | |/ ___// ___/ | \_/ __ \
|
|
|
|
// | |\___ \ \___ \| | /\ ___/
|
|
|
|
// |___/____ >____ >____/ \___ >
|
|
|
|
// \/ \/ \/
|
|
|
|
|
|
|
|
type ErrIssueNotExist struct {
|
|
|
|
ID int64
|
|
|
|
RepoID int64
|
|
|
|
Index int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrIssueNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrIssueNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrIssueNotExist) Error() string {
|
2015-08-19 22:31:28 +02:00
|
|
|
return fmt.Sprintf("issue does not exist [id: %d, repo_id: %d, index: %d]", err.ID, err.RepoID, err.Index)
|
|
|
|
}
|
|
|
|
|
2015-09-02 01:07:02 +02:00
|
|
|
// __________ .__ .__ __________ __
|
|
|
|
// \______ \__ __| | | |\______ \ ____ ________ __ ____ _______/ |_
|
|
|
|
// | ___/ | \ | | | | _// __ \/ ____/ | \_/ __ \ / ___/\ __\
|
|
|
|
// | | | | / |_| |_| | \ ___< <_| | | /\ ___/ \___ \ | |
|
|
|
|
// |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__|
|
|
|
|
// \/ \/ |__| \/ \/
|
|
|
|
|
2015-09-02 11:09:12 +02:00
|
|
|
type ErrPullRequestNotExist struct {
|
|
|
|
ID int64
|
2015-10-22 20:47:24 +02:00
|
|
|
IssueID int64
|
2015-09-02 11:09:12 +02:00
|
|
|
HeadRepoID int64
|
|
|
|
BaseRepoID int64
|
|
|
|
HeadBarcnh string
|
|
|
|
BaseBranch string
|
2015-09-02 01:07:02 +02:00
|
|
|
}
|
|
|
|
|
2015-09-02 11:09:12 +02:00
|
|
|
func IsErrPullRequestNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrPullRequestNotExist)
|
2015-09-02 01:07:02 +02:00
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2015-09-02 11:09:12 +02:00
|
|
|
func (err ErrPullRequestNotExist) Error() string {
|
2015-10-22 20:47:24 +02:00
|
|
|
return fmt.Sprintf("pull request does not exist [id: %d, issue_id: %d, head_repo_id: %d, base_repo_id: %d, head_branch: %s, base_branch: %s]",
|
|
|
|
err.ID, err.IssueID, err.HeadRepoID, err.BaseRepoID, err.HeadBarcnh, err.BaseBranch)
|
2015-09-02 01:07:02 +02:00
|
|
|
}
|
|
|
|
|
2015-08-19 22:31:28 +02:00
|
|
|
// _________ __
|
|
|
|
// \_ ___ \ ____ _____ _____ ____ _____/ |_
|
|
|
|
// / \ \/ / _ \ / \ / \_/ __ \ / \ __\
|
|
|
|
// \ \___( <_> ) Y Y \ Y Y \ ___/| | \ |
|
|
|
|
// \______ /\____/|__|_| /__|_| /\___ >___| /__|
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
|
|
|
type ErrCommentNotExist struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrCommentNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrCommentNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrCommentNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("comment does not exist [id: %d]", err.ID)
|
2015-08-12 11:04:23 +02:00
|
|
|
}
|
|
|
|
|
2015-08-10 08:42:50 +02:00
|
|
|
// .____ ___. .__
|
|
|
|
// | | _____ \_ |__ ____ | |
|
|
|
|
// | | \__ \ | __ \_/ __ \| |
|
|
|
|
// | |___ / __ \| \_\ \ ___/| |__
|
|
|
|
// |_______ (____ /___ /\___ >____/
|
|
|
|
// \/ \/ \/ \/
|
|
|
|
|
|
|
|
type ErrLabelNotExist struct {
|
|
|
|
ID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrLabelNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrLabelNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrLabelNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("label does not exist [id: %d]", err.ID)
|
|
|
|
}
|
|
|
|
|
2015-08-05 12:26:18 +02:00
|
|
|
// _____ .__.__ __
|
|
|
|
// / \ |__| | ____ _______/ |_ ____ ____ ____
|
|
|
|
// / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
|
|
|
|
// / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
|
|
|
|
// \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
|
|
|
|
// \/ \/ \/ \/ \/
|
|
|
|
|
|
|
|
type ErrMilestoneNotExist struct {
|
2015-08-10 12:57:57 +02:00
|
|
|
ID int64
|
|
|
|
RepoID int64
|
2015-08-05 12:26:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrMilestoneNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrMilestoneNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrMilestoneNotExist) Error() string {
|
2015-08-10 12:57:57 +02:00
|
|
|
return fmt.Sprintf("milestone does not exist [id: %d, repo_id: %d]", err.ID, err.RepoID)
|
2015-08-05 12:26:18 +02:00
|
|
|
}
|
2015-08-11 17:24:40 +02:00
|
|
|
|
|
|
|
// _____ __ __ .__ __
|
|
|
|
// / _ \_/ |__/ |______ ____ | |__ _____ ____ _____/ |_
|
|
|
|
// / /_\ \ __\ __\__ \ _/ ___\| | \ / \_/ __ \ / \ __\
|
|
|
|
// / | \ | | | / __ \\ \___| Y \ Y Y \ ___/| | \ |
|
|
|
|
// \____|__ /__| |__| (____ /\___ >___| /__|_| /\___ >___| /__|
|
|
|
|
// \/ \/ \/ \/ \/ \/ \/
|
|
|
|
|
|
|
|
type ErrAttachmentNotExist struct {
|
|
|
|
ID int64
|
|
|
|
UUID string
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsErrAttachmentNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrAttachmentNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrAttachmentNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("attachment does not exist [id: %d, uuid: %s]", err.ID, err.UUID)
|
|
|
|
}
|