- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.rmi.RemoteException
-
- java.rmi.server.SkeletonNotFoundException
-
- All Implemented Interfaces:
-
Serializable
已过时。没有替换。 在Java 2平台v1.2及更高版本中,远程方法调用不再需要骷髅。
@Deprecated public class SkeletonNotFoundException extends RemoteException
如果未找到与要导出的远程对象相对应的SkeletonNotFoundException
则抛出Skeleton
。 骨骼不再需要,所以这个异常永远不会被抛出。- 从以下版本开始:
- 1.1
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.rmi.RemoteException
detail
-
-
构造方法摘要
构造方法 Constructor 描述 SkeletonNotFoundException(String s)
已过时。构造具有指定详细消息的SkeletonNotFoundException
。SkeletonNotFoundException(String s, 异常 ex)
已过时。构造具有指定的详细消息和嵌套异常的SkeletonNotFoundException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
SkeletonNotFoundException
public SkeletonNotFoundException(String s)
已过时。构造具有指定详细消息的SkeletonNotFoundException
。- 参数
-
s
- 详细信息。 - 从以下版本开始:
- 1.1
-
-