Finish chapter 7
This commit is contained in:
10
java/com/craftinginterpreters/lox/RuntimeError.java
Normal file
10
java/com/craftinginterpreters/lox/RuntimeError.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package com.craftinginterpreters.lox;
|
||||
|
||||
class RuntimeError extends RuntimeException {
|
||||
final Token token;
|
||||
|
||||
RuntimeError(Token token, String message) {
|
||||
super(message);
|
||||
this.token = token;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user