AbortedErr creates an Error with codes.Aborted
(e error, msgAndArgs ...interface{})
| 238 | |
| 239 | // AbortedErr creates an Error with codes.Aborted |
| 240 | func AbortedErr(e error, msgAndArgs ...interface{}) *Error { |
| 241 | return err(codes.Aborted, e, msgAndArgs...) |
| 242 | } |
| 243 | |
| 244 | // IsAbortedErr checks if an Error has codes.Aborted |
| 245 | func IsAbortedErr(e error) bool { |