Project

General

Profile

1
package eu.dnetlib.rmi.data;
2

    
3
public class DownloadPluginException extends RuntimeException {
4

    
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
}
(13-13/32)