- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.rmi.RemoteException
-
- java.rmi.ServerRuntimeException
-
- All Implemented Interfaces:
-
Serializable
已过时。没有替换
@Deprecated public class ServerRuntimeException extends RemoteException
从JDK 1.1执行的服务器执行时,抛出ServerRuntimeException
作为远程方法调用的结果,当处理服务器上的调用时抛出一个RuntimeException
,或者在解组参数,执行远程方法本身或编组返回值时。 AServerRuntimeException
实例包含作为其原因发生的原始RuntimeException
。不会在Java 2平台v1.2或更高版本上执行的服务器中抛出
ServerRuntimeException
。- 从以下版本开始:
- 1.1
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.rmi.RemoteException
detail
-
-
构造方法摘要
构造方法 Constructor 描述 ServerRuntimeException(String s, 异常 ex)
已过时。没有替换
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.rmi.RemoteException
getCause, getMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
ServerRuntimeException
@Deprecated public ServerRuntimeException(String s, 异常 ex)
已过时。 没有替换构造具有指定的详细消息和嵌套异常的ServerRuntimeException
。- 参数
-
s
- 详细信息 -
ex
- 嵌套异常 - 从以下版本开始:
- 1.1
-
-