blob: 7323bc3d866abaf5ff92774350291cdec9d93f3e [file] [log] [blame]
package org.apache.tapestry5.json.exceptions;
public class JSONSyntaxException extends RuntimeException
{
private static final long serialVersionUID = 5647885303727734937L;
private final int position;
public JSONSyntaxException(int position, String message)
{
super(message);
this.position = position;
}
public int getPosition()
{
return this.position;
}
}