01: /* ========================================================================
02: * JCommon : a free general purpose class library for the Java(tm) platform
03: * ========================================================================
04: *
05: * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
06: *
07: * Project Info: http://www.jfree.org/jcommon/index.html
08: *
09: * This library is free software; you can redistribute it and/or modify it
10: * under the terms of the GNU Lesser General Public License as published by
11: * the Free Software Foundation; either version 2.1 of the License, or
12: * (at your option) any later version.
13: *
14: * This library is distributed in the hope that it will be useful, but
15: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17: * License for more details.
18: *
19: * You should have received a copy of the GNU Lesser General Public
20: * License along with this library; if not, write to the Free Software
21: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22: * USA.
23: *
24: * [Java is a trademark or registered trademark of Sun Microsystems, Inc.
25: * in the United States and other countries.]
26: *
27: * ---------------------------
28: * ObjectFactoryException.java
29: * ---------------------------
30: * (C)opyright 2003, 2004, by Thomas Morgner and Contributors.
31: *
32: * Original Author: Thomas Morgner;
33: * Contributor(s): David Gilbert (for Object Refinery Limited);
34: *
35: * $Id: ObjectFactoryException.java,v 1.3 2005/11/14 11:03:24 mungady Exp $
36: *
37: * Changes (from 19-Feb-2003)
38: * -------------------------
39: * 19-Feb-2003 : Added standard header and Javadocs (DG);
40: * 29-Apr-2003 : Distilled from the JFreeReport project and moved into JCommon
41: *
42: */
43:
44: package org.jfree.xml.factory.objects;
45:
46: import org.jfree.util.StackableException;
47:
48: /**
49: * An exception that is thrown, if the creation of an Object failed in the
50: * ObjectFactory implementation.
51: *
52: * @author Thomas Morgner.
53: */
54: public class ObjectFactoryException extends StackableException {
55:
56: /**
57: * Constructs a new exception with <code>null</code> as its detail message.
58: * The cause is not initialized, and may subsequently be initialized by a
59: * call to {@link #initCause}.
60: */
61: public ObjectFactoryException() {
62: super ();
63: }
64:
65: /**
66: * Constructs a new exception with the specified detail message. The
67: * cause is not initialized, and may subsequently be initialized by
68: * a call to {@link #initCause}.
69: *
70: * @param message the detail message. The detail message is saved for
71: * later retrieval by the {@link #getMessage()} method.
72: */
73: public ObjectFactoryException(final String message) {
74: super (message);
75: }
76:
77: /**
78: * Creates a new exception.
79: *
80: * @param message the message.
81: * @param cause the cause of the exception.
82: */
83: public ObjectFactoryException(final String message,
84: final Exception cause) {
85: super(message, cause);
86: }
87: }
|