blob: b4ba636bdcf8b001da09034966fc0b632e875d97 (
plain)
1
2
3
4
5
6
7
8
|
package moe.nea.lisp
interface ErrorReporter {
fun reportError(string: String): LispData
fun reportError(string: String, exception: Throwable): LispData {
return reportError("$string: $exception")
}
}
|