Project

General

Profile

Download (880 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
 * Exception that is thrown when a name that is to be changed or deleted belongs to homotypical group
13
 * which may lead to inconsistent data. Only throw this exception if the inconsistency can not be
14
 * resolved automatically.
15
 * @author a.mueller
16
 * @since 14.10.2011
17
 */
18
public class HomotypicalGroupChangeException extends DataChangeNoRollbackException {
19

    
20
	private static final long serialVersionUID = -294632690489123786L;
21

    
22
	public HomotypicalGroupChangeException(){
23
		super();
24
	}
25

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