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