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