Project

General

Profile

1
package eu.dnetlib.rmi.provision;
2

    
3
public class OaiPublisherRuntimeException extends RuntimeException {
4

    
5
	/**
6
	 *
7
	 */
8
	private static final long serialVersionUID = -4295850381530160166L;
9

    
10
	public OaiPublisherRuntimeException() {
11
		super();
12
	}
13

    
14
	public OaiPublisherRuntimeException(final Throwable e) {
15
		super(e);
16
	}
17

    
18
	public OaiPublisherRuntimeException(final String msg, final Throwable e) {
19
		super(msg, e);
20
	}
21

    
22
	public OaiPublisherRuntimeException(final String msg) {
23
		super(msg);
24
	}
25

    
26
}
(8-8/8)