KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > ejb > NoSuchEntityException


1 /**
2  * EasyBeans
3  * Copyright (C) 2006 Bull S.A.S.
4  * Contact: easybeans@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: NoSuchEntityException.java 1100 2006-08-16 13:05:31Z benoitf $
23  * --------------------------------------------------------------------------
24  */

25
26 package javax.ejb;
27
28 /**
29  * The NoSuchEntityException exception is thrown by an Entity Bean instance to
30  * its container to report that the invoked business method or callback method
31  * could not be completed because of the underlying entity was removed from the
32  * database.<br>
33  * This exception may be thrown by the bean class methods that implement the
34  * business methods defined in the bean's component interface; and by the
35  * ejbLoad and ejbStore methods.
36  * @see <a HREF="http://www.jcp.org/en/jsr/detail?id=220">EJB 3.0 specification</a>
37  * @author Florent Benoit
38  */

39 public class NoSuchEntityException extends EJBException JavaDoc {
40
41     /**
42      * UID for serialization.
43      */

44     private static final long serialVersionUID = -4861625171310593950L;
45
46     /**
47      * Default constructor : builds an exception with an empty message.
48      */

49     public NoSuchEntityException() {
50         super();
51     }
52
53     /**
54      * Build an exception with the given message.
55      * @param message the given message to use.
56      */

57     public NoSuchEntityException(final String JavaDoc message) {
58         super(message);
59     }
60
61     /**
62      * Build an exception with the given exception.
63      * @param causedByException the cause of this exception.
64      */

65     public NoSuchEntityException(final Exception JavaDoc causedByException) {
66         super(causedByException);
67     }
68 }
69
Popular Tags