diff options
author | Unknwon <u@gogs.io> | 2016-01-29 17:06:14 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-01-29 17:06:14 -0500 |
commit | 112a7cab31df083983a664e252efcfca4ecb0d7a (patch) | |
tree | f5b450fbc40fb6a2073ba134851aef19c0f1e6aa /models/error.go | |
parent | ee814bf8d6c70c91bac19059ba37af0d91b2a1e0 (diff) | |
download | gitea-112a7cab31df083983a664e252efcfca4ecb0d7a.tar.gz gitea-112a7cab31df083983a664e252efcfca4ecb0d7a.zip |
#2497 incorrect error handle for team name
Diffstat (limited to 'models/error.go')
-rw-r--r-- | models/error.go | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/models/error.go b/models/error.go index 83a24e7f4e..8e2048ded9 100644 --- a/models/error.go +++ b/models/error.go @@ -559,5 +559,26 @@ func IsErrAuthenticationNotExist(err error) bool { } func (err ErrAuthenticationNotExist) Error() string { - return fmt.Sprintf("Authentication does not exist [id: %d]", err.ID) + return fmt.Sprintf("authentication does not exist [id: %d]", err.ID) +} + +// ___________ +// \__ ___/___ _____ _____ +// | |_/ __ \\__ \ / \ +// | |\ ___/ / __ \| Y Y \ +// |____| \___ >____ /__|_| / +// \/ \/ \/ + +type ErrTeamAlreadyExist struct { + OrgID int64 + Name string +} + +func IsErrTeamAlreadyExist(err error) bool { + _, ok := err.(ErrTeamAlreadyExist) + return ok +} + +func (err ErrTeamAlreadyExist) Error() string { + return fmt.Sprintf("team already exists [org_id: %d, name: %s]", err.OrgID, err.Name) } |