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