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: ThemeUnsupportedException.java,v $
031: * Revision 1.4 2005/10/02 14:06:35 colinmacleod
032: * Added/improved log4j logging.
033: *
034: * Revision 1.3 2005/09/14 13:39:53 colinmacleod
035: * Added serialVersionUID.
036: *
037: * Revision 1.2 2005/04/09 18:04:22 colinmacleod
038: * Changed copyright text to GPL v2 explicitly.
039: *
040: * Revision 1.1 2005/01/06 22:03:48 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:38 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:52 colinmacleod
057: * Moved ivata op to SourceForge.
058: *
059: * Revision 1.2 2003/10/15 14:13:40 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.4 2003/02/04 17:43:46 colin
066: * copyright notice
067: *
068: * Revision 1.3 2002/11/12 09:03:43 colin
069: * now extends RuntimeException rather than JspTagException
070: *
071: * Revision 1.2 2002/07/01 07:48:23 colin
072: * cosmetic changes
073: *
074: * Revision 1.3 2002/06/13 11:21:47 colin
075: * first version with rose model integration.
076: *
077: * Revision 1.2 2002/05/10 12:44:12 colin
078: * Updated and extended JavaDoc
079: *
080: * Revision 1.1 2002/04/26 13:53:28 colin
081: * move to EJB/JBuilder project
082: *
083: * Revision 1.2 2002/01/25 18:04:06 colin
084: * Formatted for JavaDoc
085: *
086: * Revision 1.1 2002/01/20 23:54:04 colin
087: * first version of theme version and supported tag checking
088: * -----------------------------------------------------------------------------
089: */
090: package com.ivata.mask.web.theme;
091:
092: /**
093: * <p>
094: * An instance of this class gets thrown by {@link ThemeTheme} if you try to
095: * access a theme element which hasn't been defined.
096: * </p>
097: *
098: * @since ivata masks 0.4 (2001-10-28)
099: * @author Colin MacLeod
100: * <a href='mailto:colin.macleod@ivata.com'>colin.macleod@ivata.com</a>
101: * @see .Theme
102: * @version $Revision: 1.4 $
103: */
104: public class ThemeUnsupportedException extends RuntimeException {
105: /**
106: * Serialization version (for <code>Serializable</code> interface).
107: */
108: private static final long serialVersionUID = 1L;
109:
110: /**
111: * <p>
112: * Creates a new instance of ThemeUnsupportedException.
113: * </p>
114: *
115: * @param message a clear error Message indicating what should be done to
116: * resolve this exception.
117: */
118: public ThemeUnsupportedException(final String message) {
119: super(message);
120: }
121: }
|