Project

General

Profile

Download (918 Bytes) 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.service.exception;
10

    
11

    
12
/**
13
 * Exception that is thrown when a name that is to be changed or deleted belongs to homotypical group
14
 * which may lead to inconsistent data. Only throw this exception if the inconsistency can not be
15
 * resolved automatically.
16
 * @author a.mueller
17
 \* @since 14.10.2011
18
 *
19
 */
20
public class HomotypicalGroupChangeException extends DataChangeNoRollbackException {
21
	private static final long serialVersionUID = -294632690489123786L;
22

    
23
	public HomotypicalGroupChangeException(){
24
		super();
25
	}
26
	
27
	public HomotypicalGroupChangeException(String message){
28
		super(message);
29
	}
30
}
(2-2/4)