You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by vinaysahil chandran <sa...@yahoo.com> on 2002/04/02 21:30:21 UTC

[ALTRMI] ClassRetriever patch

Paul,
Patch to generate the exception correctly from
classretrievers.
[
getResourceStream does NOT raise any exception but
returns a 'null' InputStream on failure to find a
resource
]
Regards,
V i n a y


Index: PlainClassRetriever.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons-sandbox/altrmi/src/java/org/apache/commons/altrmi/server/impl/classretrievers/PlainClassRetriever.java,v
retrieving revision 1.3
diff -r1.3 PlainClassRetriever.java
53,58c53,56
<         try {
<             is =
mClassLoader.getResourceAsStream(thingName);
<         } catch (Exception e) {
<             throw new ClassRetrievalException(
<                 "Generated class not found in
classloader specified : " + e.getMessage());
<         }
---
>         is =
mClassLoader.getResourceAsStream(thingName);
> 		if(is==null)
>             throw new
ClassRetrievalException("Generated class for
"+thingName+" not found in specified classloader "  );
> 




__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://http://taxes.yahoo.com/

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: [ALTRMI] ClassRetriever patch

Posted by Paul Hammant <Pa...@yahoo.com>.
Vinay,

Applied, thanks dude.

- Paul

>Paul,
>Patch to generate the exception correctly from
>classretrievers.
>[
>getResourceStream does NOT raise any exception but
>returns a 'null' InputStream on failure to find a
>resource
>]
>Regards,
>V i n a y
>



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>