FileDocCategorySizeDatePackage
NoSuchObjectLocalException.javaAPI DocGlassfish v2 API2726Fri May 04 22:35:54 BST 2007javax.ejb

NoSuchObjectLocalException

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

Fields Summary
Constructors Summary
public NoSuchObjectLocalException()
Constructs a NoSuchObjectLocalException with no detail message.

    
public NoSuchObjectLocalException(String message)
Constructs a NoSuchObjectLocalException with the specified detail message.

        super(message);
    
public NoSuchObjectLocalException(String message, Exception ex)
Constructs a NoSuchObjectLocalException with the specified detail message and a nested exception.

        super(message, ex);
    
Methods Summary