implement wrongtypeexception

This commit is contained in:
ChUrl
2020-12-13 14:49:13 +01:00
parent 1adfc5246b
commit b05c227e4f

View File

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