1 package net.sf.jstp;
2
3 public class JstpParserException extends Exception
4 {
5 public int row;
6 public int col;
7 public JstpParserException(String message, int row, int col)
8 {
9 super(message);
10 this.row = row;
11 this.col = col;
12 }
13 }