FileDocCategorySizeDatePackage
CreateException.javaAPI DocGlassfish v2 API2592Fri May 04 22:35:54 BST 2007javax.ejb

CreateException

public class CreateException extends Exception
The CreateException exception must be included in the throws clauses of all create methods defined in an enterprise Bean's home interface.

This exception is used as a standard application-level exception to report a failure to create an EJB object.

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

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

        super(message);
    
Methods Summary