FileDocCategorySizeDatePackage
ServerNotActiveException.javaAPI DocJava SE 5 API1215Fri Aug 26 14:57:12 BST 2005java.rmi.server

ServerNotActiveException

public class ServerNotActiveException extends Exception
An ServerNotActiveException is an Exception thrown during a call to RemoteServer.getClientHost if the getClientHost method is called outside of servicing a remote method call.
version
1.13, 12/19/03
author
Roger Riggs
since
JDK1.1
see
java.rmi.server.RemoteServer#getClientHost()

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ServerNotActiveException()
Constructs an ServerNotActiveException with no specified detail message.

since
JDK1.1


                   
      
public ServerNotActiveException(String s)
Constructs an ServerNotActiveException with the specified detail message.

param
s the detail message.
since
JDK1.1

	super(s);
    
Methods Summary