FileDocCategorySizeDatePackage
NoSuchEJBException.javaAPI DocGlassfish v2 API2662Fri May 04 22:35:54 BST 2007javax.ejb

NoSuchEJBException

public class NoSuchEJBException extends EJBException
A NoSuchEJBException is thrown if an attempt is made to invoke a method on an object that no longer exists.

Fields Summary
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);
    
Methods Summary