Project

General

Profile

1 26600 sandro.lab
package eu.dnetlib.data.utility.objectpackaging.rmi;
2
3
import javax.xml.ws.WebFault;
4
5
import eu.dnetlib.common.rmi.RMIException;
6
7
@WebFault
8
public class ObjectPackagingException extends RMIException {
9
10
	private static final long serialVersionUID = 3468254939586031822L;
11
12
	/**
13
	 *
14
	 */
15
16
	public ObjectPackagingException(Throwable e) {
17
		super(e);
18
	}
19
20
	public ObjectPackagingException(String message, Throwable e) {
21
		super(message, e);
22
	}
23
24
	public ObjectPackagingException(String message) {
25
		super(message);
26
	}
27
28
}