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