- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.rmi.RemoteException
-
- java.rmi.NoSuchObjectException
-
- All Implemented Interfaces:
-
Serializable
public class NoSuchObjectException extends RemoteException
如果尝试调用远程虚拟机中不再存在的对象上的方法,则抛出NoSuchObjectException
。 如果尝试在远程对象上调用方法发生NoSuchObjectException
,则可以重传该呼叫,并仍保留RMI的“至多一次”调用语义。 甲NoSuchObjectException
也由方法引发java.rmi.server.RemoteObject.toStub
和由unexportObject
的方法java.rmi.server.UnicastRemoteObject
和java.rmi.activation.Activatable
和
-
-
Field Summary
-
Fields inherited from class java.rmi.RemoteException
detail
-
-
构造方法摘要
构造方法 Constructor 描述 NoSuchObjectException(String s)
构造具有指定详细消息的NoSuchObjectException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
NoSuchObjectException
public NoSuchObjectException(String s)
构造具有指定详细消息的NoSuchObjectException
。- 参数
-
s
- 详细信息 - 从以下版本开始:
- 1.1
-
-