| 554 | var _ errutil.NotFound = (*ErrPullRequestNotExist)(nil) |
| 555 | |
| 556 | type ErrPullRequestNotExist struct { |
| 557 | args map[string]any |
| 558 | } |
| 559 | |
| 560 | func IsErrPullRequestNotExist(err error) bool { |
| 561 | _, ok := err.(ErrPullRequestNotExist) |
nothing calls this directly
no outgoing calls
no test coverage detected