Top Description Fields Constructors Methods
java.rmi

public Class StubNotFoundException

extends RemoteException
Class Inheritance

A StubNotFoundException is thrown if a valid stub class could not be found for a remote object when it is exported.
Author
Roger Riggs
Since
1.1
See Also
java.rmi.server.UnicastRemoteObject

Field Summary

Modifier and TypeField and Description
private static final long
Inherited from java.rmi.RemoteException:
detail

Constructor Summary

AccessConstructor and Description
public
StubNotFoundException(String
the detail message
s
)

Constructs a StubNotFoundException with the specified detail message.

public
StubNotFoundException(String
the detail message
s
,
Exception
the nested exception
ex
)

Constructs a StubNotFoundException with the specified detail message and nested exception.

Method Summary

Inherited from java.rmi.RemoteException:
getCausegetMessage

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.rmi.RemoteException.serialVersionUID.

Constructor Detail

StubNotFoundExceptionback to summary
public StubNotFoundException(String s)

Constructs a StubNotFoundException with the specified detail message.

Parameters
s:String

the detail message

Since
1.1
StubNotFoundExceptionback to summary
public StubNotFoundException(String s, Exception ex)

Constructs a StubNotFoundException with the specified detail message and nested exception.

Parameters
s:String

the detail message

ex:Exception

the nested exception

Since
1.1