001: /***************************************************************
002: * This file is part of the [fleXive](R) project.
003: *
004: * Copyright (c) 1999-2008
005: * UCS - unique computing solutions gmbh (http://www.ucs.at)
006: * All rights reserved
007: *
008: * The [fleXive](R) project is free software; you can redistribute
009: * it and/or modify it under the terms of the GNU General Public
010: * License as published by the Free Software Foundation;
011: * either version 2 of the License, or (at your option) any
012: * later version.
013: *
014: * The GNU General Public License can be found at
015: * http://www.gnu.org/copyleft/gpl.html.
016: * A copy is found in the textfile GPL.txt and important notices to the
017: * license from the author are found in LICENSE.txt distributed with
018: * these libraries.
019: *
020: * This library is distributed in the hope that it will be useful,
021: * but WITHOUT ANY WARRANTY; without even the implied warranty of
022: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
023: * GNU General Public License for more details.
024: *
025: * For further information about UCS - unique computing solutions gmbh,
026: * please see the company website: http://www.ucs.at
027: *
028: * For further information about [fleXive](R), please see the
029: * project website: http://www.flexive.org
030: *
031: *
032: * This copyright notice MUST APPEAR in all copies of the file!
033: ***************************************************************/package com.flexive.shared.exceptions;
034:
035: import org.apache.commons.logging.Log;
036:
037: public class FxEntryExistsException extends FxApplicationException {
038: private static final long serialVersionUID = 8322768847282061637L;
039:
040: /**
041: * Localized exception constructor
042: *
043: * @param converted
044: */
045: public FxEntryExistsException(FxApplicationException converted) {
046: super (converted);
047: }
048:
049: /**
050: * Localized exception constructor
051: *
052: * @param log
053: * @param converted
054: */
055: public FxEntryExistsException(Log log,
056: FxApplicationException converted) {
057: super (log, converted);
058: }
059:
060: /**
061: * Localized exception constructor
062: *
063: * @param key
064: * @param values
065: */
066: public FxEntryExistsException(String key, Object... values) {
067: super (key, values);
068: }
069:
070: /**
071: * Localized exception constructor
072: *
073: * @param log
074: * @param key
075: * @param values
076: */
077: public FxEntryExistsException(Log log, String key, Object... values) {
078: super (log, key, values);
079: }
080:
081: /**
082: * Localized exception constructor
083: *
084: * @param cause
085: * @param key
086: * @param values
087: */
088: public FxEntryExistsException(Throwable cause, String key,
089: Object... values) {
090: super (cause, key, values);
091: }
092:
093: /**
094: * Localized exception constructor
095: *
096: * @param log
097: * @param cause
098: * @param key
099: * @param values
100: */
101: public FxEntryExistsException(Log log, Throwable cause, String key,
102: Object... values) {
103: super (log, cause, key, values);
104: }
105:
106: /**
107: * Localized exception constructor
108: *
109: * @param key
110: */
111: public FxEntryExistsException(String key) {
112: super (key);
113: }
114:
115: /**
116: * Localized exception constructor
117: *
118: * @param log
119: * @param key
120: */
121: public FxEntryExistsException(Log log, String key) {
122: super (log, key);
123: }
124:
125: /**
126: * Localized exception constructor
127: *
128: * @param message
129: * @param cause
130: */
131: public FxEntryExistsException(String message, Throwable cause) {
132: super (message, cause);
133: }
134:
135: /**
136: * Localized exception constructor
137: *
138: * @param log
139: * @param message
140: * @param cause
141: */
142: public FxEntryExistsException(Log log, String message,
143: Throwable cause) {
144: super (log, message, cause);
145: }
146:
147: /**
148: * Localized exception constructor
149: *
150: * @param cause
151: */
152: public FxEntryExistsException(Throwable cause) {
153: super (cause);
154: }
155:
156: /**
157: * Localized exception constructor
158: *
159: * @param log
160: * @param cause
161: */
162: public FxEntryExistsException(Log log, Throwable cause) {
163: super(log, cause);
164: }
165:
166: }
|