1 16 17 package org.apache.xerces.impl.xpath; 18 19 28 public class XPathException 29 extends Exception { 30 31 32 static final long serialVersionUID = -948482312169512085L; 33 34 36 private String fKey; 38 42 43 public XPathException() { 44 super(); 45 fKey = "c-general-xpath"; 46 } 48 49 public XPathException(String key) { 50 super(); 51 fKey = key; 52 } 54 public String getKey() { 55 return fKey; 56 } 58 } | Popular Tags |