RuntimeError wraps runtime errors to distinguish them from usage errors
| 23 | |
| 24 | // RuntimeError wraps runtime errors to distinguish them from usage errors |
| 25 | type RuntimeError struct { |
| 26 | Err error |
| 27 | } |
| 28 | |
| 29 | func (e RuntimeError) Error() string { |
| 30 | return e.Err.Error() |
nothing calls this directly
no outgoing calls
no test coverage detected