NoSuchEJBExceptionpublic class NoSuchEJBException extends EJBException A NoSuchEJBException is thrown if an attempt is made to invoke
a method on an object that no longer exists. |
Constructors Summary |
---|
public NoSuchEJBException()Constructs a NoSuchEJBException with no detail message.
| public NoSuchEJBException(String message)Constructs a NoSuchEJBException with the specified
detail message.
super(message);
| public NoSuchEJBException(String message, Exception ex)Constructs a NoSuchEJBException with the specified
detail message and a nested exception.
super(message, ex);
|
|