/[classpath]/classpath/org/omg/CosNaming/NamingContextExtPackage/InvalidAddress.java
ViewVC logotype

Diff of /classpath/org/omg/CosNaming/NamingContextExtPackage/InvalidAddress.java

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

revision 1.1 by audriusa, Sun May 15 01:09:30 2005 UTC revision 1.2 by audriusa, Thu Jun 16 20:34:33 2005 UTC
# Line 41  package org.omg.CosNaming.NamingContextE Line 41  package org.omg.CosNaming.NamingContextE
41  import org.omg.CORBA.UserException;  import org.omg.CORBA.UserException;
42  import org.omg.CORBA.portable.IDLEntity;  import org.omg.CORBA.portable.IDLEntity;
43    
44    import java.io.Serializable;
45    
46  /**  /**
47   * The exception is thrown if the passed address is empty or otherwise invalid.   * The exception is thrown if the passed address is empty or otherwise invalid.
48   *   *
# Line 48  import org.omg.CORBA.portable.IDLEntity; Line 50  import org.omg.CORBA.portable.IDLEntity;
50   */   */
51  public final class InvalidAddress  public final class InvalidAddress
52    extends UserException    extends UserException
53    implements IDLEntity    implements IDLEntity, Serializable
54  {  {
55  }    /**
56       * Use serialVersionUID (v1.4) for interoperability.
57       */
58      private static final long serialVersionUID = -3775583235364760385L;
59    
60      /**
61       * Create an exception with no message.
62       */
63      public InvalidAddress()
64      {
65      }
66    
67      /**
68       * Create an exception with explaining message.
69       *
70       * @since 1.4
71       */
72      public InvalidAddress(String why)
73      {
74        super(why);
75      }
76    }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

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