1. /*
  2. * @(#)UnknownGroupException.java 1.10 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>UnknownGroupException</code> is thrown by methods of classes and
  13. * interfaces in the <code>java.rmi.activation</code> package when the
  14. * <code>ActivationGroupID</code> parameter to the method is determined to be
  15. * invalid, i.e., not known by the <code>ActivationSystem</code>. An
  16. * <code>UnknownGroupException</code> is also thrown if the
  17. * <code>ActivationGroupID</code> in an <code>ActivationDesc</code> refers to
  18. * a group that is not registered with the <code>ActivationSystem</code>
  19. *
  20. * @version 1.10, 02/02/00
  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.ActivationGroupID
  26. * @see java.rmi.activation.ActivationMonitor
  27. * @see java.rmi.activation.ActivationSystem
  28. */
  29. public class UnknownGroupException extends ActivationException {
  30. /** indicate compatibility with the Java 2 SDK v1.2 version of class */
  31. private static final long serialVersionUID = 7056094974750002460L;
  32. /**
  33. * Constructs an <code>UnknownGroupException</code> with the specified
  34. * detail message.
  35. *
  36. * @param s the detail message
  37. * @since 1.2
  38. */
  39. public UnknownGroupException(String s) {
  40. super(s);
  41. }
  42. }