Project

General

Profile

1
package eu.dnetlib.parthenos.publisher;
2

    
3
/**
4
 * Created by Alessia Bardi on 29/08/2017.
5
 *
6
 * @author Alessia Bardi
7
 */
8
public class ParthenosPublisherException extends Exception{
9

    
10
	public ParthenosPublisherException() {
11
	}
12

    
13
	public ParthenosPublisherException(final String message) {
14
		super(message);
15
	}
16

    
17
	public ParthenosPublisherException(final String message, final Throwable cause) {
18
		super(message, cause);
19
	}
20

    
21
	public ParthenosPublisherException(final Throwable cause) {
22
		super(cause);
23
	}
24

    
25
	public ParthenosPublisherException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
26
		super(message, cause, enableSuppression, writableStackTrace);
27
	}
28
}
(2-2/4)