< prev index next >

src/jdk.xml.dom/share/classes/org/w3c/dom/xpath/XPathException.java

Print this page




  27  * License version 2 only, as published by the Free Software Foundation.
  28  * However, the following notice accompanied the original version of this
  29  * file and, per its terms, should not be removed:
  30  *
  31  * Copyright (c) 2002 World Wide Web Consortium,
  32  * (Massachusetts Institute of Technology, Institut National de
  33  * Recherche en Informatique et en Automatique, Keio University). All
  34  * Rights Reserved. This program is distributed under the W3C's Software
  35  * Intellectual Property License. This program is distributed in the
  36  * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  37  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  38  * PURPOSE.
  39  * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
  40  */
  41 
  42 package org.w3c.dom.xpath;
  43 
  44 /**
  45  * A new exception has been created for exceptions specific to these XPath
  46  * interfaces.
  47  * <p>See also the <a href='http://www.w3.org/2002/08/WD-DOM-Level-3-XPath-20020820'>Document Object Model (DOM) Level 3 XPath Specification</a>.







  48  */
  49 public class XPathException extends RuntimeException {
  50     private static final long serialVersionUID = 3471034171575979943L;
  51 
  52     public XPathException(short code, String message) {
  53        super(message);
  54        this.code = code;
  55     }
  56     public short   code;
  57     // XPathExceptionCode
  58     /**
  59      * If the expression has a syntax error or otherwise is not a legal
  60      * expression according to the rules of the specific
  61      * <code>XPathEvaluator</code> or contains specialized extension
  62      * functions or variables not supported by this implementation.
  63      */
  64     public static final short INVALID_EXPRESSION_ERR    = 1;
  65     /**
  66      * If the expression cannot be converted to return the specified type.
  67      */


  27  * License version 2 only, as published by the Free Software Foundation.
  28  * However, the following notice accompanied the original version of this
  29  * file and, per its terms, should not be removed:
  30  *
  31  * Copyright (c) 2002 World Wide Web Consortium,
  32  * (Massachusetts Institute of Technology, Institut National de
  33  * Recherche en Informatique et en Automatique, Keio University). All
  34  * Rights Reserved. This program is distributed under the W3C's Software
  35  * Intellectual Property License. This program is distributed in the
  36  * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  37  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  38  * PURPOSE.
  39  * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
  40  */
  41 
  42 package org.w3c.dom.xpath;
  43 
  44 /**
  45  * A new exception has been created for exceptions specific to these XPath
  46  * interfaces.
  47  *
  48  * See also <a href='https://www.w3.org/TR/DOM-Level-3-XPath/'>
  49  * Document Object Model (DOM) Level 3 XPath Specification, Version 1.0,
  50  * W3C Working Group Note 26 February 2004</a>
  51  * Note that this class came from Document Object Model (DOM) Level 3 XPath
  52  * Specification, Working Draft 20 August 2002 where the values of
  53  * {@link #INVALID_EXPRESSION_ERR} and {@link #TYPE_ERR}
  54  * are 1 and 2 respectively (instead of 51 and 52 as in the 2004 version).
  55  */
  56 public class XPathException extends RuntimeException {
  57     private static final long serialVersionUID = 3471034171575979943L;
  58 
  59     public XPathException(short code, String message) {
  60        super(message);
  61        this.code = code;
  62     }
  63     public short   code;
  64     // XPathExceptionCode
  65     /**
  66      * If the expression has a syntax error or otherwise is not a legal
  67      * expression according to the rules of the specific
  68      * <code>XPathEvaluator</code> or contains specialized extension
  69      * functions or variables not supported by this implementation.
  70      */
  71     public static final short INVALID_EXPRESSION_ERR    = 1;
  72     /**
  73      * If the expression cannot be converted to return the specified type.
  74      */
< prev index next >