jdk/src/share/classes/java/rmi/NoSuchObjectException.java
changeset 24865 09b1d992ca72
parent 5506 202f599c92aa
equal deleted inserted replaced
24864:a7bf63ebda64 24865:09b1d992ca72
    37  * <code>unexportObject</code> methods of
    37  * <code>unexportObject</code> methods of
    38  * <code>java.rmi.server.UnicastRemoteObject</code> and
    38  * <code>java.rmi.server.UnicastRemoteObject</code> and
    39  * <code>java.rmi.activation.Activatable</code> and
    39  * <code>java.rmi.activation.Activatable</code> and
    40  *
    40  *
    41  * @author  Ann Wollrath
    41  * @author  Ann Wollrath
    42  * @since   JDK1.1
    42  * @since   1.1
    43  * @see     java.rmi.server.RemoteObject#toStub(Remote)
    43  * @see     java.rmi.server.RemoteObject#toStub(Remote)
    44  * @see     java.rmi.server.UnicastRemoteObject#unexportObject(Remote,boolean)
    44  * @see     java.rmi.server.UnicastRemoteObject#unexportObject(Remote,boolean)
    45  * @see     java.rmi.activation.Activatable#unexportObject(Remote,boolean)
    45  * @see     java.rmi.activation.Activatable#unexportObject(Remote,boolean)
    46  */
    46  */
    47 public class NoSuchObjectException extends RemoteException {
    47 public class NoSuchObjectException extends RemoteException {
    52     /**
    52     /**
    53      * Constructs a <code>NoSuchObjectException</code> with the specified
    53      * Constructs a <code>NoSuchObjectException</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 NoSuchObjectException(String s) {
    59     public NoSuchObjectException(String s) {
    60         super(s);
    60         super(s);
    61     }
    61     }
    62 }
    62 }