javax.ejb
Class ObjectNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.ejb.FinderException
javax.ejb.ObjectNotFoundException
- All Implemented Interfaces:
- Serializable
public class ObjectNotFoundException
- extends FinderException
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).
- Author:
- Florent Benoit
- See Also:
- EJB 3.1 specification,
Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
ObjectNotFoundException
public ObjectNotFoundException()
- Default constructor : builds an exception with an empty message.
ObjectNotFoundException
public ObjectNotFoundException(String message)
- Build an exception with the given message.
- Parameters:
message - the given message to use.
Copyright © 2007-2012 OW2 Consortium. All Rights Reserved.