more expressive undefined error

This commit is contained in:
ChUrl
2021-01-22 16:44:06 +01:00
parent ad7e86df24
commit 3d40e93fdc

View File

@ -0,0 +1,8 @@
package typechecker;
public class SymbolNotDefinedException extends RuntimeException {
public SymbolNotDefinedException(String message) {
super("\n" + message);
}
}