| 123456789101112131415161718192021222324252627282930313233343536 |
- // Copyright 2015 The Gogs Authors. All rights reserved.
- // Copyright 2018 Gitote. All rights reserved.
- //
- // This source code is licensed under the MIT license found in the
- // LICENSE file in the root directory of this source tree.
- package errors
- import "fmt"
- type EmailNotFound struct {
- Email string
- }
- func IsEmailNotFound(err error) bool {
- _, ok := err.(EmailNotFound)
- return ok
- }
- func (err EmailNotFound) Error() string {
- return fmt.Sprintf("email is not found [email: %s]", err.Email)
- }
- type EmailNotVerified struct {
- Email string
- }
- func IsEmailNotVerified(err error) bool {
- _, ok := err.(EmailNotVerified)
- return ok
- }
- func (err EmailNotVerified) Error() string {
- return fmt.Sprintf("email has not been verified [email: %s]", err.Email)
- }
|