(err error)
| 809 | } |
| 810 | |
| 811 | func IsErrIssueNotExist(err error) bool { |
| 812 | _, ok := err.(ErrIssueNotExist) |
| 813 | return ok |
| 814 | } |
| 815 | |
| 816 | func (err ErrIssueNotExist) Error() string { |
| 817 | return fmt.Sprintf("issue does not exist: %v", err.args) |
no outgoing calls
no test coverage detected