Project

General

Profile

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

    
11
/**
12
 * An Exception shown if data is unpublished and therefore under the given
13
 * circumstances not readable.
14
 *
15
 * @author a.mueller
16
 * @since 07.06.2018
17
 */
18
public class UnpublishedException extends Exception {
19

    
20
    private static final long serialVersionUID = 1901079330887825007L;
21

    
22
    /**
23
     *
24
     */
25
    public UnpublishedException() {
26
        super();
27
    }
28

    
29
    /**
30
     * @param message
31
     * @param cause
32
     */
33
    public UnpublishedException(String message, Throwable cause) {
34
        super(message, cause);
35
    }
36

    
37
    /**
38
     * @param message
39
     */
40
    public UnpublishedException(String message) {
41
        super(message);
42
    }
43

    
44
    /**
45
     * @param cause
46
     */
47
    public UnpublishedException(Throwable cause) {
48
        super(cause);
49
    }
50

    
51
}
(2-2/2)