(msg string, stackTrace []TraceFrame)
| 25 | } |
| 26 | |
| 27 | func makeRuntimeError(msg string, stackTrace []TraceFrame) RuntimeError { |
| 28 | return RuntimeError{ |
| 29 | Msg: msg, |
| 30 | StackTrace: stackTrace, |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | func (err RuntimeError) Error() string { |
| 35 | return "RUNTIME ERROR: " + err.Msg |
no outgoing calls
no test coverage detected
searching dependent graphs…