Project

General

Profile

Download (880 Bytes) Statistics
| Branch: | Tag: | Revision:
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.service.exception;
11

    
12

    
13
/**
14
 * Exception that is thrown when an object that is to be deleted within a deleteXXX
15
 * method can not be deleted due to other objects referencing the given object.
16
 * @author a.mueller
17
 * @date 12.10.2011
18
 *
19
 */
20
public class ReferencedObjectUndeletableException extends DataChangeNoRollbackException {
21
	private static final long serialVersionUID = -7232205281413184907L;
22

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