Project

General

Profile

1
package eu.dnetlib.rmi.provision;
2

    
3
import javax.xml.ws.WebFault;
4

    
5
import eu.dnetlib.rmi.common.RMIException;
6

    
7
/**
8
 * OAI publisher specific exception.
9
 *
10
 * @author michele
11
 */
12
@WebFault
13
public class OaiPublisherException extends RMIException {
14

    
15
	/**
16
	 * serialization.
17
	 */
18
	private static final long serialVersionUID = 6833698764790681184L;
19

    
20
	/**
21
	 * Creates an exception.
22
	 *
23
	 * @param e exception
24
	 */
25
	public OaiPublisherException(final Throwable e) {
26
		super(e);
27
	}
28

    
29
	/**
30
	 * Creates an exception.
31
	 *
32
	 * @param message message
33
	 * @param e       exception
34
	 */
35
	public OaiPublisherException(final String message, final Throwable e) {
36
		super(message, e);
37
	}
38

    
39
	/**
40
	 * Creates an exception.
41
	 *
42
	 * @param message message
43
	 */
44
	public OaiPublisherException(final String message) {
45
		super(message);
46
	}
47

    
48
}
(7-7/8)