/[classpath]/classpath/gnu/javax/rmi/CORBA/UtilDelegateImpl.java
ViewVC logotype

Diff of /classpath/gnu/javax/rmi/CORBA/UtilDelegateImpl.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by audriusa, Sun Oct 2 19:58:01 2005 UTC revision 1.4 by audriusa, Tue Oct 4 17:58:15 2005 UTC
# Line 38  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package gnu.javax.rmi.CORBA;  package gnu.javax.rmi.CORBA;
40    
41    import gnu.CORBA.Minor;
42  import gnu.CORBA.ObjectCreator;  import gnu.CORBA.ObjectCreator;
43  import gnu.CORBA.generalTypeCode;  import gnu.CORBA.generalTypeCode;
44  import gnu.CORBA.Poa.ORB_1_4;  import gnu.CORBA.Poa.ORB_1_4;
# Line 217  public class UtilDelegateImpl Line 218  public class UtilDelegateImpl
218                    {                    {
219                      MARSHAL m = new MARSHAL("Unable to instantiate "                      MARSHAL m = new MARSHAL("Unable to instantiate "
220                        + tieClassName);                        + tieClassName);
221                        m.minor = Minor.TargetConversion;
222                      m.initCause(e);                      m.initCause(e);
223                      throw m;                      throw m;
224                    }                    }
# Line 681  public class UtilDelegateImpl Line 683  public class UtilDelegateImpl
683          output.write_any(any);          output.write_any(any);
684        }        }
685      else      else
686        throw new MARSHAL(object.getClass().getName()        {
687          + " must be CORBA Object, Remote or Serializable");          MARSHAL m = new MARSHAL(object.getClass().getName()
688              + " must be CORBA Object, Remote or Serializable");
689            m.minor = Minor.NonSerializable;
690            throw m;
691          }
692    }    }
693    
694    /**    /**

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26