| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception javax.ejb.FinderException javax.ejb.ObjectNotFoundException
ObjectNotFoundException | public class ObjectNotFoundException extends FinderException (Code) | | The ObjectNotFoundException exception is thrown by a finder method to
indicate that the specified EJB object does not exist.
Only the finder methods that are declared to return a single EJB object use
this exception. This exception should not be thrown by finder methods that
return a collection of EJB objects (they should return an empty collection
instead).
See Also: EJB 3.0 specification author: Florent Benoit |
ObjectNotFoundException | public ObjectNotFoundException()(Code) | | Default constructor : builds an exception with an empty message.
|
ObjectNotFoundException | public ObjectNotFoundException(String message)(Code) | | Build an exception with the given message.
Parameters: message - the given message to use. |
|
|
|