NotFound is a helper function to return an not found Error.
(format string, args ...interface{})
| 130 | |
| 131 | // NotFound is a helper function to return an not found Error. |
| 132 | func NotFound(format string, args ...interface{}) *Error { |
| 133 | return Format(StatusNotFound, format, args...) |
| 134 | } |
| 135 | |
| 136 | // InvalidArgument is a helper function to return an invalid argument Error. |
| 137 | func InvalidArgument(format string, args ...interface{}) *Error { |
no test coverage detected
searching dependent graphs…