| 56 | } |
| 57 | |
| 58 | type errNotExists struct { |
| 59 | entityName string |
| 60 | id string |
| 61 | } |
| 62 | |
| 63 | func (e errNotExists) Error() string { |
| 64 | return fmt.Sprintf("a %s with id %s doesn't exist", e.entityName, e.id) |
nothing calls this directly
no outgoing calls
no test coverage detected