issue.go 460 B

1234567891011121314151617181920
  1. // Copyright 2017 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package errors
  5. import "fmt"
  6. type InvalidIssueReference struct {
  7. Ref string
  8. }
  9. func IsInvalidIssueReference(err error) bool {
  10. _, ok := err.(InvalidIssueReference)
  11. return ok
  12. }
  13. func (err InvalidIssueReference) Error() string {
  14. return fmt.Sprintf("invalid issue reference [ref: %s]", err.Ref)
  15. }