001: /*
002: * Copyright (c) 2001 - 2005 ivata limited.
003: * All rights reserved.
004: * -----------------------------------------------------------------------------
005: * ivata masks may be redistributed under the GNU General Public
006: * License as published by the Free Software Foundation;
007: * version 2 of the License.
008: *
009: * These programs are free software; you can redistribute them and/or
010: * modify them under the terms of the GNU General Public License
011: * as published by the Free Software Foundation; version 2 of the License.
012: *
013: * These programs are distributed in the hope that they will be useful,
014: * but WITHOUT ANY WARRANTY; without even the implied warranty of
015: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
016: *
017: * See the GNU General Public License in the file LICENSE.txt for more
018: * details.
019: *
020: * If you would like a copy of the GNU General Public License write to
021: *
022: * Free Software Foundation, Inc.
023: * 59 Temple Place - Suite 330
024: * Boston, MA 02111-1307, USA.
025: *
026: *
027: * To arrange commercial support and licensing, contact ivata at
028: * http://www.ivata.com/contact.jsp
029: * -----------------------------------------------------------------------------
030: * $Log: HTMLFormatterNullException.java,v $
031: * Revision 1.4 2005/09/14 13:23:57 colinmacleod
032: * Added serialVersionUID.
033: *
034: * Revision 1.3 2005/04/09 18:04:18 colinmacleod
035: * Changed copyright text to GPL v2 explicitly.
036: *
037: * Revision 1.2 2005/01/19 12:52:48 colinmacleod
038: * Cosmetic (comment format) changes.
039: *
040: * Revision 1.1 2005/01/06 22:41:01 colinmacleod
041: * Moved up a version number.
042: * Changed copyright notices to 2005.
043: * Updated the documentation:
044: * - started working on multiproject:site docu.
045: * - changed the logo.
046: * Added checkstyle and fixed LOADS of style issues.
047: * Added separate thirdparty subproject.
048: * Added struts (in web), util and webgui (in webtheme) from ivata op.
049: *
050: * Revision 1.3 2004/03/21 21:16:37 colinmacleod
051: * Shortened name to ivata op.
052: *
053: * Revision 1.2 2004/02/01 22:07:32 colinmacleod
054: * Added full names to author tags
055: *
056: * Revision 1.1.1.1 2004/01/27 20:59:47 colinmacleod
057: * Moved ivata op to SourceForge.
058: *
059: * Revision 1.2 2003/10/15 14:13:39 colin
060: * Fixes for XDoclet.
061: *
062: * Revision 1.1 2003/02/24 19:33:33 colin
063: * Moved to new subproject.
064: *
065: * Revision 1.3 2003/02/04 17:43:46 colin
066: * copyright notice
067: *
068: * Revision 1.2 2002/11/12 09:02:16 colin
069: * now extends from RuntimeException, rather than JspTagException
070: *
071: * Revision 1.1 2002/06/21 11:58:37 colin
072: * restructured com.ivata.mask.jsp into separate sub-categories:
073: * format, JavaScript, theme and tree.
074: *
075: * Revision 1.2 2002/06/13 11:21:46 colin
076: * first version with rose model integration.
077: *
078: * Revision 1.1 2002/04/26 13:53:05 colin
079: * move to EJB/JBuilder project
080: * -----------------------------------------------------------------------------
081: */
082: package com.ivata.mask.web.format;
083:
084: /**
085: * <p>
086: * An instance of this class gets thrown by the <code>imformatter:format</code>
087: * tag when it can't find an instance of
088: * {@link com.ivata.mask.web.format.HTMLFormatter}.
089: * </p>
090: *
091: * @since ivata masks 0.4 (2002-02-17)
092: * @author Colin MacLeod
093: * <a href='mailto:colin.macleod@ivata.com'>colin.macleod@ivata.com</a>
094: * @see com.ivata.mask.web.theme.Theme
095: * @version $Revision: 1.4 $
096: */
097: public class HTMLFormatterNullException extends RuntimeException {
098: /**
099: * Serialization version (for <code>Serializable</code> interface).
100: */
101: private static final long serialVersionUID = 1L;
102:
103: /**
104: * <p>
105: * Creates a new instance of <code>HTMLFormatterNullException</code>.
106: * </p>
107: *
108: * @param messageParam
109: * a clear error Message indicating what should be done to
110: * resolve this exception.
111: */
112: public HTMLFormatterNullException(final String messageParam) {
113: super(messageParam);
114: }
115: }
|