]> gerrit.simantics Code Review - simantics/platform.git/blob - SCLSyntaxErrorException.java
fbf3297e604bc4234719f06af20228dbefa99dea
[simantics/platform.git] / SCLSyntaxErrorException.java
1 package org.simantics.scl.compiler.internal.parsing.exceptions;
2
3
4
5 public class SCLSyntaxErrorException extends RuntimeException {
6
7     private static final long serialVersionUID = -3346141636177900501L;
8
9     public long location;
10     
11     public SCLSyntaxErrorException(long location, String description) {
12         super(description);
13         this.location = location;
14     }
15
16 }