]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/parsing/exceptions/SCLSyntaxErrorException.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / internal / parsing / exceptions / 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 }