Package jakarta.ejb
Class FinderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.ejb.FinderException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ObjectNotFoundException
The FinderException exception must be included in the throws clause of every finder method of an entity bean's home
or local home interface.
The exception is used as a standard application-level exception to report a failure to find the requested enterprise bean object(s).
Note: Support for entity beans is optional as of EJB 3.2.
- Since:
- EJB 1.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an FinderException with no detail message.FinderException
(String message) Constructs an FinderException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FinderException
public FinderException()Constructs an FinderException with no detail message. -
FinderException
Constructs an FinderException with the specified detail message.- Parameters:
message
- aString
object.
-