| 9 | ) |
| 10 | |
| 11 | type ErrorHandler interface { |
| 12 | // Usually called from Fatal. When called from Fatal, if this method returns |
| 13 | // true, Fatal should panic, otherwise it should not. |
| 14 | ReportError(from string, err error) |
| 15 | Fatal(from string, err error) |
| 16 | } |
| 17 | |
| 18 | type PanicErrorHandler struct { |
| 19 | Ferry *Ferry |
no outgoing calls
no test coverage detected