Author: thorsten Date: Tue Sep 30 06:12:29 2008 New Revision: 700448 URL: http://svn.apache.org/viewvc?rev=700448&view=rev Log: Resolver can throw exceptions
Modified: forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java Modified: forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java URL: http://svn.apache.org/viewvc/forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java?rev=700448&r1=700447&r2=700448&view=diff ============================================================================== --- forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java (original) +++ forrest/branches/dispatcher_rewrite/plugins/org.apache.forrest.plugin.internal.dispatcher/src/java/org/apache/forrest/dispatcher/api/Resolver.java Tue Sep 30 06:12:29 2008 @@ -18,6 +18,8 @@ import java.io.InputStream; +import org.apache.forrest.dispatcher.exception.DispatcherException; + /** * Wrapper interface to enable multible resolver implementation this makes it * possible to use the dispatcher outside of cocoon as standalone application @@ -34,7 +36,8 @@ * * @param uri the uri that we want * @return the stream representation of the uri. + * @throws DispatcherException */ - InputStream resolve(String uri); + InputStream resolve(String uri) throws DispatcherException; }