1 16 17 package org.apache.xerces.impl.xpath.regex; 18 19 25 public class ParseException extends RuntimeException { 26 27 28 static final long serialVersionUID = -7012400318097691370L; 29 30 int location; 31 32 37 40 public ParseException(String mes, int location) { 41 super(mes); 42 this.location = location; 43 } 44 45 49 public int getLocation() { 50 return this.location; 51 } 52 } 53 | Popular Tags |