summaryrefslogtreecommitdiffstats
path: root/src/com/craftinginterpreters/lox/RuntimeError.java
blob: 017865b5a9928ec52fa7add362919ce3780f1973 (plain)
1
2
3
4
5
6
7
8
9
10
package com.craftinginterpreters.lox;

class RuntimeError extends RuntimeException {
    final Token token;

    RuntimeError(Token token, String message) {
        super(message);
        this.token = token;
    }
}