Project

General

Profile

1 41779 sandro.lab
package eu.dnetlib.rmi.data;
2 26600 sandro.lab
3 41779 sandro.lab
import eu.dnetlib.rmi.common.RMIException;
4 26600 sandro.lab
5 38916 claudio.at
public class DownloadServiceException extends RMIException {
6 26600 sandro.lab
7
	/**
8 38916 claudio.at
	 *
9 26600 sandro.lab
	 */
10
	private static final long serialVersionUID = -5031281288958769185L;
11
12 38916 claudio.at
	public DownloadServiceException(final String string) {
13 26600 sandro.lab
		super(string);
14
	}
15 38916 claudio.at
16
	public DownloadServiceException(final String string, final Throwable exception) {
17 26600 sandro.lab
		super(string, exception);
18
	}
19
20 38916 claudio.at
	public DownloadServiceException(final Throwable exception) {
21 26600 sandro.lab
		super(exception);
22
	}
23
24
}