ErrNotFound
(format string, a ...interface{})
| 486 | // ErrNotFound |
| 487 | |
| 488 | func NewErrNotFound(format string, a ...interface{}) *ErrNotFound { |
| 489 | return &ErrNotFound{fmt.Sprintf(format, a...)} |
| 490 | } |
| 491 | |
| 492 | func (e *ErrNotFound) Error() string { return e.what + " does not exist" } |
| 493 |
no outgoing calls
no test coverage detected