| JavaTM 2 Platform Std. Ed. v1.4.2 
 
java.rmi
Class ServerRuntimeException
java.lang.Object
   java.lang.Throwable  java.lang.Exception  java.io.IOException  java.rmi.RemoteException  java.rmi.ServerRuntimeException 
All Implemented Interfaces: Serializable Deprecated. no replacement
 
 
public class ServerRuntimeExceptionextends RemoteException 
From a server executing on JDK 1.1, a
 ServerRuntimeExceptionis thrown as a result of a
 remote method invocation when aRuntimeExceptionis
 thrown while processing the invocation on the server, either while
 unmarshalling the arguments, executing the remote method itself, or
 marshalling the return value.
 AServerRuntimeExceptioninstance contains the originalRuntimeExceptionthat occurred as its cause. A ServerRuntimeExceptionis not thrown from servers
 executing on the Java 2 platform v1.2 or later versions. 
 
 
Since:JDK1.1See Also:Serialized Form 
 
 
 
ServerRuntimeException
public ServerRuntimeException(String s,
                              Exception ex)
Deprecated. no replacement
 Constructs a ServerRuntimeExceptionwith the specified
 detail message and nested exception.
Parameters:s- the detail messageex- the nested exceptionSince:JDK1.1 
 Copyright 2003 Sun Microsystems, Inc. All rights reserved |