1 /* 2 * @(#)UnknownObjectException.java 1.11 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package java.rmi.activation; 9 10 /** 11 * An <code>UnknownObjectException</code> is thrown by methods of classes and 12 * interfaces in the <code>java.rmi.activation</code> package when the 13 * <code>ActivationID</code> parameter to the method is determined to be 14 * invalid. An <code>ActivationID</code> is invalid if it is not currently 15 * known by the <code>ActivationSystem</code>. An <code>ActivationID</code> 16 * is obtained by the <code>ActivationSystem.registerObject</code> method. 17 * An <code>ActivationID</code> is also obtained during the 18 * <code>Activatable.register</code> call. 19 * 20 * @version 1.11, 12/19/03 21 * @author Ann Wollrath 22 * @since 1.2 23 * @see java.rmi.activation.Activatable 24 * @see java.rmi.activation.ActivationGroup 25 * @see java.rmi.activation.ActivationID 26 * @see java.rmi.activation.ActivationMonitor 27 * @see java.rmi.activation.ActivationSystem 28 * @see java.rmi.activation.Activator 29 */ 30 public class UnknownObjectException extends ActivationException { 31 32 /** indicate compatibility with the Java 2 SDK v1.2 version of class */ 33 private static final long serialVersionUID = 3425547551622251430L; 34 35 /** 36 * Constructs an <code>UnknownObjectException</code> with the specified 37 * detail message. 38 * 39 * @param s the detail message 40 * @since 1.2 41 */ 42 public UnknownObjectException(String s) { 43 super(s); 44 } 45 } 46