You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2007/08/18 21:46:44 UTC

svn commit: r567322 - /incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPathException.java

Author: jmsnell
Date: Sat Aug 18 12:46:44 2007
New Revision: 567322

URL: http://svn.apache.org/viewvc?view=rev&rev=567322
Log:
Extend RuntimeException so we do not have to explicitly catch this everywhere it's used

Modified:
    incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPathException.java

Modified: incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPathException.java
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPathException.java?view=diff&rev=567322&r1=567321&r2=567322
==============================================================================
--- incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPathException.java (original)
+++ incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPathException.java Sat Aug 18 12:46:44 2007
@@ -17,7 +17,7 @@
 */
 package org.apache.abdera.xpath;
 
-public class XPathException extends Exception {
+public class XPathException extends RuntimeException {
 
   private static final long serialVersionUID = 7373747391262088925L;