declare namespace java { namespace rmi { namespace server { /** * 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. * @author Roger Riggs * @since JDK1.1 * @see java.rmi.server.RemoteServer#getClientHost() */ // @ts-ignore class ServerNotActiveException extends java.lang.Exception { /** * Constructs an ServerNotActiveException with no specified * detail message. * @since JDK1.1 */ // @ts-ignore constructor() /** * Constructs an ServerNotActiveException with the specified * detail message. * @param s the detail message. * @since JDK1.1 */ // @ts-ignore constructor(s: java.lang.String | string) } } } }