| 22 | package errors |
| 23 | |
| 24 | type ontError struct { |
| 25 | errmsg string |
| 26 | callstack *CallStack |
| 27 | root error |
| 28 | code ErrCode |
| 29 | } |
| 30 | |
| 31 | func (e ontError) Error() string { |
| 32 | return e.errmsg |
nothing calls this directly
no outgoing calls
no test coverage detected