ActivateFailedException.java: Remerge from Classpath version.
* java/rmi/activation/ActivateFailedException.java: Remerge from Classpath version. * java/rmi/activation/ActivationException.java: Ditto. * java/rmi/activation/UnknownGroupException.java: Ditto. * java/rmi/activation/UnknownObjectException.java: Ditto. * java/rmi/server/ExportException: Ditto. * java/rmi/server/ServerCloneException: Ditto. * java/rmi/server/ServerNotActiveException: Ditto. * java/rmi/server/SkeletonMismatchException: Ditto. * java/rmi/server/SkeletonNotFoundException: Ditto. * java/rmi/server/SocketSecurityException: Ditto. From-SVN: r54711
This commit is contained in:
parent
df696a7573
commit
1a4b27e82f
11 changed files with 442 additions and 186 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
|
||||
/* UnknownGroupException.java -- thrown on an invalid ActivationGroupID
|
||||
Copyright (c) 1996, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
|
@ -37,11 +37,33 @@ exception statement from your version. */
|
|||
|
||||
package java.rmi.activation;
|
||||
|
||||
public class UnknownGroupException
|
||||
extends ActivationException {
|
||||
|
||||
public UnknownGroupException(String s) {
|
||||
super(s);
|
||||
}
|
||||
/**
|
||||
* Thrown when an <code>ActivationGroupID</code> parameter is invalid or
|
||||
* unknown.
|
||||
*
|
||||
* @author unknown
|
||||
* @see Activatable
|
||||
* @see ActivationGroup
|
||||
* @see ActivationID
|
||||
* @see ActivationMonitor
|
||||
* @see ActivationSystem
|
||||
* @since 1.2
|
||||
* @status updated to 1.4
|
||||
*/
|
||||
public class UnknownGroupException extends ActivationException
|
||||
{
|
||||
/**
|
||||
* Compatible with JDK 1.2+.
|
||||
*/
|
||||
private static final long serialVersionUID = 7056094974750002460L;
|
||||
|
||||
/**
|
||||
* Create an exception with a message.
|
||||
*
|
||||
* @param s the message
|
||||
*/
|
||||
public UnknownGroupException(String s)
|
||||
{
|
||||
super(s);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue