Error is a wrapper of an OS error, which handles not found.
| 10 | |
| 11 | // Error is a wrapper of an OS error, which handles not found. |
| 12 | type Error struct { |
| 13 | error |
| 14 | } |
| 15 | |
| 16 | func (e Error) NotFound() bool { |
| 17 | return e.error == os.ErrNotExist |
no outgoing calls
no test coverage detected