Project

General

Profile

Download (1.33 KB) Statistics
| Branch: | Tag: | Revision:
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.logging.log4j.LogManager;import org.apache.logging.log4j.Logger;
12

    
13
/**
14
 * This exception should be thrown if a derived unit facade does not support a certain
15
 * method because its derived unit type (specimenOrObservation type) does not support
16
 * the functionality.
17
 * 
18
 * @see DerivedUnitFacadeNotSupportedException
19
 * 
20
 * @author a.mueller
21
 * @since 17.05.2010
22
 *
23
 */
24
public class MethodNotSupportedByDerivedUnitTypeException extends Exception {
25
	private static final long serialVersionUID = -1135345372784107810L;
26
	@SuppressWarnings("unused")
27
	private static final Logger logger = LogManager.getLogger(MethodNotSupportedByDerivedUnitTypeException.class);
28

    
29

    
30
	/**
31
	 * @param arg0
32
	 */
33
	public MethodNotSupportedByDerivedUnitTypeException(String arg0) {
34
		super(arg0);
35
	}
36

    
37
	/**
38
	 * @param arg0
39
	 */
40
	public MethodNotSupportedByDerivedUnitTypeException(Throwable arg0) {
41
		super(arg0);
42
	}
43

    
44
	/**
45
	 * @param arg0
46
	 * @param arg1
47
	 */
48
	public MethodNotSupportedByDerivedUnitTypeException(String arg0, Throwable arg1) {
49
		super(arg0, arg1);
50
	}
51

    
52

    
53
}
(6-6/6)