InvalidArgument is a helper function to return an invalid argument Error.
(format string, args ...interface{})
| 135 | |
| 136 | // InvalidArgument is a helper function to return an invalid argument Error. |
| 137 | func InvalidArgument(format string, args ...interface{}) *Error { |
| 138 | return Format(StatusInvalidArgument, format, args...) |
| 139 | } |
| 140 | |
| 141 | // Internal is a helper function to return an internal Error. |
| 142 | func Internal(err error, format string, args ...interface{}) *Error { |
no test coverage detected
searching dependent graphs…