diff options
Diffstat (limited to 'heat/TypecheckException.java')
-rw-r--r-- | heat/TypecheckException.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/heat/TypecheckException.java b/heat/TypecheckException.java new file mode 100644 index 0000000..39919ef --- /dev/null +++ b/heat/TypecheckException.java @@ -0,0 +1,9 @@ +package heat; + +public class TypecheckException extends RuntimeException { + + public TypecheckException(String message) { + super(message); + } + +} |