|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| XPathTypeException.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | /* Copyright 2005 Elliotte Rusty Harold | |
| 2 | ||
| 3 | This library is free software; you can redistribute it and/or modify | |
| 4 | it under the terms of version 2.1 of the GNU Lesser General Public | |
| 5 | License as published by the Free Software Foundation. | |
| 6 | ||
| 7 | This library is distributed in the hope that it will be useful, | |
| 8 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 10 | GNU Lesser General Public License for more details. | |
| 11 | ||
| 12 | You should have received a copy of the GNU Lesser General Public | |
| 13 | License along with this library; if not, write to the | |
| 14 | Free Software Foundation, Inc., 59 Temple Place, Suite 330, | |
| 15 | Boston, MA 02111-1307 USA | |
| 16 | ||
| 17 | You can contact Elliotte Rusty Harold by sending e-mail to | |
| 18 | elharo@metalab.unc.edu. Please include the word "XOM" in the | |
| 19 | subject line. The XOM home page is located at http://www.xom.nu/ | |
| 20 | */ | |
| 21 | package nu.xom; | |
| 22 | ||
| 23 | /** | |
| 24 | * <p> | |
| 25 | * Indicates that an XPath query returned a non-node-set. | |
| 26 | * </p> | |
| 27 | * | |
| 28 | * @author Elliotte Rusty Harold | |
| 29 | * @version 1.1b4 | |
| 30 | * | |
| 31 | */ | |
| 32 | public class XPathTypeException extends XPathException { | |
| 33 | ||
| 34 | private static final long serialVersionUID = 1247817719683497718L; | |
| 35 | ||
| 36 | private final Object returnValue; | |
| 37 | ||
| 38 | ||
| 39 | 113 | XPathTypeException(String message, Object returnValue) { |
| 40 | 113 | super(message); |
| 41 | 113 | this.returnValue = returnValue; |
| 42 | } | |
| 43 | ||
| 44 | ||
| 45 | /** | |
| 46 | * <p> | |
| 47 | * This method probably returns the actual object returned by the | |
| 48 | * query. However, XOM makes no guarantees about the type of this | |
| 49 | * object. | |
| 50 | * </p> | |
| 51 | * | |
| 52 | * @return the query result | |
| 53 | */ | |
| 54 | 1 | public Object getReturnValue() { |
| 55 | 1 | return this.returnValue; |
| 56 | } | |
| 57 | ||
| 58 | ||
| 59 | } |
|
||||||||||