Skip to content

Commit

Permalink
Fix issue #92, throw an XPathException not an XProcException because …
Browse files Browse the repository at this point in the history
…Saxon catches the former and not the latter
  • Loading branch information
ndw committed Mar 20, 2013
1 parent 0c36cad commit 1fe3bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/xmlcalabash/util/XProcURIResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public Reader resolve(URI uri, String s, Configuration configuration) throws XPa
InputStream stream = conn.getInputStream();
return new InputStreamReader(stream);
} catch (Exception e) {
throw new XProcException(e);
throw new XPathException(e);
}
}
}

0 comments on commit 1fe3bd8

Please sign in to comment.