Project

General

Profile

1
package eu.dnetlib.parthenos.workflows.nodes;
2

    
3
/**
4
 * Created by Alessia Bardi on 17/02/2018.
5
 *
6
 * @author Alessia Bardi
7
 */
8
public class VirtuosoParthenosException extends Exception{
9

    
10
	public VirtuosoParthenosException() {
11
	}
12

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

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

    
21
	public VirtuosoParthenosException(final Throwable cause) {
22
		super(cause);
23
	}
24
}
(10-10/12)