jdk/src/share/classes/java/rmi/AlreadyBoundException.java
changeset 24865 09b1d992ca72
parent 5506 202f599c92aa
equal deleted inserted replaced
24864:a7bf63ebda64 24865:09b1d992ca72
    27 /**
    27 /**
    28  * An <code>AlreadyBoundException</code> is thrown if an attempt
    28  * An <code>AlreadyBoundException</code> is thrown if an attempt
    29  * is made to bind an object in the registry to a name that already
    29  * is made to bind an object in the registry to a name that already
    30  * has an associated binding.
    30  * has an associated binding.
    31  *
    31  *
    32  * @since   JDK1.1
    32  * @since   1.1
    33  * @author  Ann Wollrath
    33  * @author  Ann Wollrath
    34  * @author  Roger Riggs
    34  * @author  Roger Riggs
    35  * @see     java.rmi.Naming#bind(String, java.rmi.Remote)
    35  * @see     java.rmi.Naming#bind(String, java.rmi.Remote)
    36  * @see     java.rmi.registry.Registry#bind(String, java.rmi.Remote)
    36  * @see     java.rmi.registry.Registry#bind(String, java.rmi.Remote)
    37  */
    37  */
    41     private static final long serialVersionUID = 9218657361741657110L;
    41     private static final long serialVersionUID = 9218657361741657110L;
    42 
    42 
    43     /**
    43     /**
    44      * Constructs an <code>AlreadyBoundException</code> with no
    44      * Constructs an <code>AlreadyBoundException</code> with no
    45      * specified detail message.
    45      * specified detail message.
    46      * @since JDK1.1
    46      * @since 1.1
    47      */
    47      */
    48     public AlreadyBoundException() {
    48     public AlreadyBoundException() {
    49         super();
    49         super();
    50     }
    50     }
    51 
    51 
    52     /**
    52     /**
    53      * Constructs an <code>AlreadyBoundException</code> with the specified
    53      * Constructs an <code>AlreadyBoundException</code> with the specified
    54      * detail message.
    54      * detail message.
    55      *
    55      *
    56      * @param s the detail message
    56      * @param s the detail message
    57      * @since JDK1.1
    57      * @since 1.1
    58      */
    58      */
    59     public AlreadyBoundException(String s) {
    59     public AlreadyBoundException(String s) {
    60         super(s);
    60         super(s);
    61     }
    61     }
    62 }
    62 }