/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.nbstudio.syntax;
/**
*
* @author daimor
*/
public class SyntaxError {
public String message;
public int line;
public int charPositionInLine;
public int start;
public int stop;
}