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: ThemeParseException.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.2 2002/11/12 09:03:24 colin
066: * now extends RuntimeException rather than JspTagException
067: *
068: * Revision 1.1 2002/07/01 09:54:45 colin
069: * added new ANTLR parser
070: * -----------------------------------------------------------------------------
071: */
072: package com.ivata.mask.web.theme;
073:
074: /**
075: * <p>
076: * An instance of this class gets thrown by {@linkTheme Theme} if there is any
077: * problem parsing a theme section.
078: * </p>
079: *
080: * @since 2002-06-30
081: * @author Colin MacLeod
082: * <a href='mailto:colin.macleod@ivata.com'>colin.macleod@ivata.com</a>
083: * @see Theme
084: * @version $Revision: 1.4 $
085: */
086: public class ThemeParseException extends RuntimeException {
087: /**
088: * Serialization version (for <code>Serializable</code> interface).
089: */
090: private static final long serialVersionUID = 1L;
091:
092: /**
093: * <p>
094: * Creates a new instance of ThemeUnsupportedException.
095: * </p>
096: *
097: * @param cause the original exception which caused the error..
098: */
099: public ThemeParseException(final Throwable cause) {
100: super(cause);
101: }
102: }
|