1
0

Add unittest

This commit is contained in:
otya128
2017-07-08 17:56:14 +09:00
parent 75d9e8edbf
commit 390c47e3d6
4 changed files with 22 additions and 1 deletions

View File

@@ -45,6 +45,13 @@ class InternalError : SmileBasicError
this.errnum = 1;
super("Internal Error");
}
Throwable throwable;
this(Throwable throwable)
{
this.throwable = throwable;
this.errnum = 1;
super("Internal Error");
}
}
class SyntaxError : SmileBasicError
{