cleanup
[cdmlib.git] / cdmlib-services / src / main / java / eu / etaxonomy / cdm / api / facade / DerivedUnitFacadeNotSupportedException.java
1 /**
2 * Copyright (C) 2009 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.cdm.api.facade;
10
11 import org.apache.log4j.Logger;
12
13 /**
14 * This exception should be thrown if a derived unit facade can not be created or
15 * initialized because the underlying data complexity is not supported by the facade.
16 *
17 * @see MethodNotSupportedByDerivedUnitTypeException
18 *
19 * @author a.mueller
20 * @since 17.05.2010
21 *
22 */
23 public class DerivedUnitFacadeNotSupportedException extends Exception {
24 private static final long serialVersionUID = -2593445506656913492L;
25 @SuppressWarnings("unused")
26 private static final Logger logger = Logger.getLogger(DerivedUnitFacadeNotSupportedException.class);
27
28
29 /**
30 * @param arg0
31 */
32 public DerivedUnitFacadeNotSupportedException(String arg0) {
33 super(arg0);
34 }
35
36 /**
37 * @param arg0
38 */
39 public DerivedUnitFacadeNotSupportedException(Throwable arg0) {
40 super(arg0);
41 }
42
43 /**
44 * @param arg0
45 * @param arg1
46 */
47 public DerivedUnitFacadeNotSupportedException(String arg0, Throwable arg1) {
48 super(arg0, arg1);
49 }
50
51
52 }