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: /**
038: * @author Daniel Lichtenberger (daniel.lichtenberger@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at)
039: */
040:
041: public class FxEntryInUseException extends FxApplicationException {
042: private static final long serialVersionUID = -7833477602386345832L;
043:
044: public FxEntryInUseException(FxApplicationException converted) {
045: super (converted);
046: // TODO Auto-generated constructor stub
047: }
048:
049: public FxEntryInUseException(Log log,
050: FxApplicationException converted) {
051: super (log, converted);
052: // TODO Auto-generated constructor stub
053: }
054:
055: public FxEntryInUseException(Log log, String key, Object... values) {
056: super (log, key, values);
057: // TODO Auto-generated constructor stub
058: }
059:
060: public FxEntryInUseException(Log log, String message,
061: Throwable cause) {
062: super (log, message, cause);
063: // TODO Auto-generated constructor stub
064: }
065:
066: public FxEntryInUseException(Log log, String key) {
067: super (log, key);
068: // TODO Auto-generated constructor stub
069: }
070:
071: public FxEntryInUseException(Log log, Throwable cause, String key,
072: Object... values) {
073: super (log, cause, key, values);
074: // TODO Auto-generated constructor stub
075: }
076:
077: public FxEntryInUseException(Log log, Throwable cause) {
078: super (log, cause);
079: // TODO Auto-generated constructor stub
080: }
081:
082: public FxEntryInUseException(String key, Object... values) {
083: super (key, values);
084: // TODO Auto-generated constructor stub
085: }
086:
087: public FxEntryInUseException(String message, Throwable cause) {
088: super (message, cause);
089: // TODO Auto-generated constructor stub
090: }
091:
092: public FxEntryInUseException(String key) {
093: super (key);
094: // TODO Auto-generated constructor stub
095: }
096:
097: public FxEntryInUseException(Throwable cause, String key,
098: Object... values) {
099: super (cause, key, values);
100: // TODO Auto-generated constructor stub
101: }
102:
103: public FxEntryInUseException(Throwable cause) {
104: super (cause);
105: // TODO Auto-generated constructor stub
106: }
107:
108: }
|