aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/craftinginterpreters/lox/RuntimeError.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/craftinginterpreters/lox/RuntimeError.java')
-rw-r--r--src/com/craftinginterpreters/lox/RuntimeError.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/com/craftinginterpreters/lox/RuntimeError.java b/src/com/craftinginterpreters/lox/RuntimeError.java
deleted file mode 100644
index 017865b..0000000
--- a/src/com/craftinginterpreters/lox/RuntimeError.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.craftinginterpreters.lox;
-
-class RuntimeError extends RuntimeException {
- final Token token;
-
- RuntimeError(Token token, String message) {
- super(message);
- this.token = token;
- }
-}