implement wrongtypeexception
This commit is contained in:
8
src/main/java/typechecker/WrongTypeException.java
Normal file
8
src/main/java/typechecker/WrongTypeException.java
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
package typechecker;
|
||||||
|
|
||||||
|
public class WrongTypeException extends RuntimeException {
|
||||||
|
|
||||||
|
public WrongTypeException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user