summaryrefslogtreecommitdiff
path: root/heat/TypecheckException.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-04-26 17:01:49 -0600
committerbd-912 <bdunahu@colostate.edu>2024-04-26 17:01:49 -0600
commit7c6c79a437a4c1e7cf85964d005a3cdeb59809f1 (patch)
tree87318f07590b624d4408410e4b2693ad20dff166 /heat/TypecheckException.java
parentccd38b0746b0b5aeeefdd6e49f2c9d6cb66676f4 (diff)
Added skeleton files in "heat" libary, successor to TypeCheckSimp
Diffstat (limited to 'heat/TypecheckException.java')
-rw-r--r--heat/TypecheckException.java9
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);
+ }
+
+}