Project

General

Profile

1
package eu.dnetlib.rmi.data;
2

    
3
import eu.dnetlib.rmi.common.RMIException;
4

    
5
public class DownloadServiceException extends RMIException {
6

    
7
	/**
8
	 *
9
	 */
10
	private static final long serialVersionUID = -5031281288958769185L;
11

    
12
	public DownloadServiceException(final String string) {
13
		super(string);
14
	}
15

    
16
	public DownloadServiceException(final String string, final Throwable exception) {
17
		super(string, exception);
18
	}
19

    
20
	public DownloadServiceException(final Throwable exception) {
21
		super(exception);
22
	}
23

    
24
}
(19-19/42)