1 /*
2 * Copyright (c) 2001 - 2005 ivata limited.
3 * All rights reserved.
4 * -----------------------------------------------------------------------------
5 * ivata masks may be redistributed under the GNU General Public
6 * License as published by the Free Software Foundation;
7 * version 2 of the License.
8 *
9 * These programs are free software; you can redistribute them and/or
10 * modify them under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; version 2 of the License.
12 *
13 * These programs are distributed in the hope that they will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 *
17 * See the GNU General Public License in the file LICENSE.txt for more
18 * details.
19 *
20 * If you would like a copy of the GNU General Public License write to
21 *
22 * Free Software Foundation, Inc.
23 * 59 Temple Place - Suite 330
24 * Boston, MA 02111-1307, USA.
25 *
26 *
27 * To arrange commercial support and licensing, contact ivata at
28 * http://www.ivata.com/contact.jsp
29 * -----------------------------------------------------------------------------
30 * $Log: HTMLFormatterNullException.java,v $
31 * Revision 1.3 2005/04/09 18:04:18 colinmacleod
32 * Changed copyright text to GPL v2 explicitly.
33 *
34 * Revision 1.2 2005/01/19 12:52:48 colinmacleod
35 * Cosmetic (comment format) changes.
36 *
37 * Revision 1.1 2005/01/06 22:41:01 colinmacleod
38 * Moved up a version number.
39 * Changed copyright notices to 2005.
40 * Updated the documentation:
41 * - started working on multiproject:site docu.
42 * - changed the logo.
43 * Added checkstyle and fixed LOADS of style issues.
44 * Added separate thirdparty subproject.
45 * Added struts (in web), util and webgui (in webtheme) from ivata op.
46 *
47 * Revision 1.3 2004/03/21 21:16:37 colinmacleod
48 * Shortened name to ivata op.
49 *
50 * Revision 1.2 2004/02/01 22:07:32 colinmacleod
51 * Added full names to author tags
52 *
53 * Revision 1.1.1.1 2004/01/27 20:59:47 colinmacleod
54 * Moved ivata op to SourceForge.
55 *
56 * Revision 1.2 2003/10/15 14:13:39 colin
57 * Fixes for XDoclet.
58 *
59 * Revision 1.1 2003/02/24 19:33:33 colin
60 * Moved to new subproject.
61 *
62 * Revision 1.3 2003/02/04 17:43:46 colin
63 * copyright notice
64 *
65 * Revision 1.2 2002/11/12 09:02:16 colin
66 * now extends from RuntimeException, rather than JspTagException
67 *
68 * Revision 1.1 2002/06/21 11:58:37 colin
69 * restructured com.ivata.mask.jsp into separate sub-categories:
70 * format, JavaScript, theme and tree.
71 *
72 * Revision 1.2 2002/06/13 11:21:46 colin
73 * first version with rose model integration.
74 *
75 * Revision 1.1 2002/04/26 13:53:05 colin
76 * move to EJB/JBuilder project
77 * -----------------------------------------------------------------------------
78 */
79 package com.ivata.mask.web.format;
80 /***
81 * <p>
82 * An instance of this class gets thrown by the <code>imformatter:format</code>
83 * tag when it can't find an instance of
84 * {@link com.ivata.mask.web.format.HTMLFormatter}.
85 * </p>
86 *
87 * @since ivata masks 0.4 (2002-02-17)
88 * @author Colin MacLeod
89 * <a href='mailto:colin.macleod@ivata.com'>colin.macleod@ivata.com</a>
90 * @see com.ivata.mask.web.theme.Theme
91 * @version $Revision: 1.3 $
92 */
93 public class HTMLFormatterNullException extends RuntimeException {
94 /***
95 * <p>
96 * Creates a new instance of <code>HTMLFormatterNullException</code>.
97 * </p>
98 *
99 * @param messageParam
100 * a clear error Message indicating what should be done to
101 * resolve this exception.
102 */
103 public HTMLFormatterNullException(final String messageParam) {
104 super(messageParam);
105 }
106 }
107