(err error)
| 20 | } |
| 21 | |
| 22 | func IsErrNotFound(err error) bool { |
| 23 | _, ok := err.(*ErrNotFound) |
| 24 | return ok |
| 25 | } |
| 26 | |
| 27 | // ErrMultipleMatch is to be returned when more than one entity, item, element |
| 28 | // is found, where only one was expected. |
no outgoing calls
no test coverage detected