(typename string)
| 12 | } |
| 13 | |
| 14 | func NewErrNotFound(typename string) *ErrNotFound { |
| 15 | return &ErrNotFound{typename: typename} |
| 16 | } |
| 17 | |
| 18 | func (e ErrNotFound) Error() string { |
| 19 | return fmt.Sprintf("%s doesn't exist", e.typename) |
no outgoing calls
no test coverage detected