ErrorHandler is a function that handles and acts on errors
func(err error) error
| 33 | |
| 34 | // ErrorHandler is a function that handles and acts on errors |
| 35 | type ErrorHandler func(err error) error |
| 36 | |
| 37 | // IgnoreNotExist ignores any errors that are for not existing files |
| 38 | func IgnoreNotExist(err error) error { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…