(err error)
| 690 | } |
| 691 | |
| 692 | func IsErrDeployKeyNotExist(err error) bool { |
| 693 | _, ok := err.(ErrDeployKeyNotExist) |
| 694 | return ok |
| 695 | } |
| 696 | |
| 697 | func (err ErrDeployKeyNotExist) Error() string { |
| 698 | return fmt.Sprintf("deploy key does not exist: %v", err.args) |