Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2021 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.description;
10

    
11
/**
12
 * @author a.mueller
13
 * @since 07.10.2021
14
 */
15
public class AggregationException extends RuntimeException {
16

    
17
    private static final long serialVersionUID = -883213782380432255L;
18

    
19
    public AggregationException() {
20
        super();
21
    }
22

    
23
    public AggregationException(String message, Throwable cause, boolean enableSuppression,
24
            boolean writableStackTrace) {
25
        super(message, cause, enableSuppression, writableStackTrace);
26
    }
27

    
28
    public AggregationException(String message, Throwable cause) {
29
        super(message, cause);
30
    }
31

    
32
    public AggregationException(String message) {
33
        super(message);
34
    }
35

    
36
    public AggregationException(Throwable cause) {
37
        super(cause);
38
    }
39

    
40
}
(1-1/12)