Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1004 → Rev 1005

/zpath/trunk/src/ak/zpath/PathParseException.java
0,0 → 1,12
package ak.zpath;
 
import java.text.ParseException;
 
public class PathParseException
extends ParseException
{
public PathParseException(String message, int pos)
{
super(message, pos);
}
}