Project

General

Profile

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