Bugs item #686611, was opened at 2003-02-14 17: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: Christian Riege (lqd) 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 ---------------------------------------------------------------------- >Comment By: Christian Riege (lqd) Date: 2003-02-25 06:09 Message: Logged In: YES user_id=176671 ... i vaguely remember there being a reason why the test is carried around this way (IIRC it was initially done the other way around and changed because of some other bug). i'll take a look at this. ---------------------------------------------------------------------- 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:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
