All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class javax.ejb.ObjectNotFoundException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----javax.ejb.FinderException
                           |
                           +----javax.ejb.ObjectNotFoundException

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 a null collection instead).


Constructor Index

 o ObjectNotFoundException()
Constructs an ObjectNotFoundException with no detail message.
 o ObjectNotFoundException(String)
Constructs an ObjectNotFoundException with the specified detail message.

Constructors

 o ObjectNotFoundException
 public ObjectNotFoundException()
Constructs an ObjectNotFoundException with no detail message.

 o ObjectNotFoundException
 public ObjectNotFoundException(String message)
Constructs an ObjectNotFoundException with the specified detail message.


All Packages  Class Hierarchy  This Package  Previous  Next  Index