Joined: Mon Apr 23, 2007 11:08 am Posts: 29
|
|
I want to generate the IDL with rmic -idl command that contains an exception like :
//IDL file module myMody { interface myInterface { exception MyException{}; }; };
But I don't know what to extends in my Java Remote Class to obtain that.
I've tried public class MyException extends Exception { }
But the rmic -idl generated idl for the exception and for all java.lang.Exception
I've tried public class MyException extends java.rmi.RemoteException { }
or
public class MyException extends org.omg.CORBA.UserException { }
But the rmic -idl did not generate IDL file for my exception
Does anyone know how I can create an UserException in Java to generate the corresponding IDL without all java.lang classes ?
Thanks
|
|