- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.rmi.RemoteException
-
- java.rmi.server.SkeletonMismatchException
-
- All Implemented Interfaces:
-
Serializable
已过时。没有替换。 在Java 2平台v1.2及更高版本中,远程方法调用不再需要骷髅。
@Deprecated public class SkeletonMismatchException extends RemoteException
当收到与可用骨架不匹配的调用时,会抛出此异常。 它指示此接口中的远程方法名称或签名已更改,或用于进行调用的Stub类和接收到调用的骨架不是由同一版本的存根编译器(rmic
)生成的。- 从以下版本开始:
- 1.1
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.rmi.RemoteException
detail
-
-
构造方法摘要
构造方法 Constructor 描述 SkeletonMismatchException(String s)
已过时。没有替换
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
SkeletonMismatchException
@Deprecated public SkeletonMismatchException(String s)
已过时。 没有替换构造一个新的SkeletonMismatchException
具有指定的详细消息。- 参数
-
s
- 详细信息 - 从以下版本开始:
- 1.1
-
-