| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException javax.ejb.EJBException javax.ejb.NoSuchEntityException
NoSuchEntityException | public class NoSuchEntityException extends EJBException (Code) | | The NoSuchEntityException exception is thrown by an Entity Bean instance to
its container to report that the invoked business method or callback method
could not be completed because of the underlying entity was removed from the
database.
This exception may be thrown by the bean class methods that implement the
business methods defined in the bean's component interface; and by the
ejbLoad and ejbStore methods.
See Also: EJB 3.0 specification author: Florent Benoit |
NoSuchEntityException | public NoSuchEntityException()(Code) | | Default constructor : builds an exception with an empty message.
|
NoSuchEntityException | public NoSuchEntityException(String message)(Code) | | Build an exception with the given message.
Parameters: message - the given message to use. |
NoSuchEntityException | public NoSuchEntityException(Exception causedByException)(Code) | | Build an exception with the given exception.
Parameters: causedByException - the cause of this exception. |
|
|
|