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