package org.simantics.scl.compiler.internal.parsing.exceptions; public class SCLSyntaxErrorException extends RuntimeException { private static final long serialVersionUID = -3346141636177900501L; public long location; public SCLSyntaxErrorException(long location, String description) { super(description); this.location = location; } }