diff options
author | Unknwon <u@gogs.io> | 2015-08-05 18:26:18 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-05 18:26:18 +0800 |
commit | 74bd6b939c725e6e9c7395fe6356e9a6d7d662e6 (patch) | |
tree | aeb3f0ac190f6c1bee4f754ca70067f77b7b9280 /models/error.go | |
parent | cf90312b8f47a0dc028f1263cbf763bce1cb6d77 (diff) | |
download | gitea-74bd6b939c725e6e9c7395fe6356e9a6d7d662e6.tar.gz gitea-74bd6b939c725e6e9c7395fe6356e9a6d7d662e6.zip |
milestone: edit
Diffstat (limited to 'models/error.go')
-rw-r--r-- | models/error.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/models/error.go b/models/error.go index 04f850def9..01adeb425b 100644 --- a/models/error.go +++ b/models/error.go @@ -134,3 +134,24 @@ func IsErrRepoNotExist(err error) bool { func (err ErrRepoNotExist) Error() string { return fmt.Sprintf("repository does not exist [id: %d, uid: %d, name: %s]", err.ID, err.UID, err.Name) } + +// _____ .__.__ __ +// / \ |__| | ____ _______/ |_ ____ ____ ____ +// / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \ +// / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/ +// \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ > +// \/ \/ \/ \/ \/ + +type ErrMilestoneNotExist struct { + ID int64 + Index int64 +} + +func IsErrMilestoneNotExist(err error) bool { + _, ok := err.(ErrMilestoneNotExist) + return ok +} + +func (err ErrMilestoneNotExist) Error() string { + return fmt.Sprintf("milestone does not exist [id: %d, index: %d]", err.ID, err.Index) +} |