Error get error string
()
| 15 | |
| 16 | // Error get error string |
| 17 | func (e FileNotFoundError) Error() string { |
| 18 | return fmt.Sprintf("file (%s) not found", e.FileName) |
| 19 | } |
| 20 | |
| 21 | // IsFileNotFoundError check is file not found error |
| 22 | func IsFileNotFoundError(e error) bool { |
no outgoing calls
no test coverage detected