Bugs item #686611, was opened at 2003-02-14 16:13
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=686611&group_id=22866

Category: JBossServer
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: roberto (rroberto)
Assigned to: Nobody/Anonymous (nobody)
Summary: throwsRemoteException in AbstractVerifier 

Initial Comment:
According to the RMI Spec. a remote interface must 
throw a RemoteException so, I need to make sure that 
the exception thrown is either a RemoteException  or a 
class that can be assigned to RemoteException (a 
derived class).

Using 
 if( exception[i].isAssignableFrom
(java.rmi.RemoteException.class) )
this is not fully correct..

I suggest to replace with :

 if (java.rmi.RemoteException.class.isAssignableFrom
(exception[i]))


This problem occurs with 3.0.6

Thank You
Roberto


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=686611&group_id=22866


-------------------------------------------------------
This SF.NET email is sponsored by: FREE  SSL Guide from Thawte
are you planning your Web Server Security? Click here to get a FREE
Thawte SSL guide and find the answers to all your  SSL security issues.
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0026en
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to