11 lines
211 B
Java
Raw Normal View History

2024-05-02 23:04:07 +02:00
package de.dhbwstuttgart.exceptions;
import org.antlr.v4.runtime.Token;
public class ParserError extends TypeinferenceException{
public ParserError(Token offset){
super("Fehler beim Parsen", offset);
}
}