2022-07-06 16:06:50 +02:00

11 lines
217 B
Java

package com.craftinginterpreters.lox;
class RuntimeError extends RuntimeException {
final Token token;
RuntimeError(Token token, String message) {
super(message);
this.token = token;
}
}