diff options
author | Unknwon <u@gogs.io> | 2015-03-16 04:04:27 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-03-16 04:04:27 -0400 |
commit | 588f3215c6c4a82c7ad9cbd2cc6a5683d0ca3cc2 (patch) | |
tree | 3c62e7d0e50bf3d4046ecf07fd33063a3d8958ac /models/error.go | |
parent | 471b8a18ab73b181b0d6769e2bd95111afd0e9d3 (diff) | |
download | gitea-588f3215c6c4a82c7ad9cbd2cc6a5683d0ca3cc2.tar.gz gitea-588f3215c6c4a82c7ad9cbd2cc6a5683d0ca3cc2.zip |
#1040: dashboard no longer accessible when repo is missing
Diffstat (limited to 'models/error.go')
-rw-r--r-- | models/error.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/models/error.go b/models/error.go new file mode 100644 index 0000000000..6f1a366cb4 --- /dev/null +++ b/models/error.go @@ -0,0 +1,31 @@ +// 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" +) + +// __________ .__ __ +// \______ \ ____ ______ ____ _____|__|/ |_ ___________ ___.__. +// | _// __ \\____ \ / _ \/ ___/ \ __\/ _ \_ __ < | | +// | | \ ___/| |_> > <_> )___ \| || | ( <_> ) | \/\___ | +// |____|_ /\___ > __/ \____/____ >__||__| \____/|__| / ____| +// \/ \/|__| \/ \/ + +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) +} |