Project

General

Profile

Download (873 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 an object that is to be deleted within a deleteXXX
14
 * method can not be deleted due to other objects referencing the given object.
15
 * @author a.mueller
16
 \* @since 12.10.2011
17
 *
18
 */
19
public class ReferencedObjectUndeletableException extends DataChangeNoRollbackException {
20
	private static final long serialVersionUID = -7232205281413184907L;
21

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