(err error)
| 558 | } |
| 559 | |
| 560 | func IsErrPullRequestNotExist(err error) bool { |
| 561 | _, ok := err.(ErrPullRequestNotExist) |
| 562 | return ok |
| 563 | } |
| 564 | |
| 565 | func (err ErrPullRequestNotExist) Error() string { |
| 566 | return fmt.Sprintf("pull request does not exist: %v", err.args) |
no outgoing calls
no test coverage detected