Project

General

Profile

1
package eu.dnetlib.rmi.soap.exceptions;
2

    
3
public class DatasourceManagerServiceException extends DnetSoapException {
4

    
5
	/**
6
	 * 
7
	 */
8
	private static final long serialVersionUID = -4976018444831853270L;
9

    
10
	public DatasourceManagerServiceException(final String string) {
11
		super(string);
12
	}
13

    
14
	public DatasourceManagerServiceException(final String string, final Throwable exception) {
15
		super(string, exception);
16
	}
17

    
18
	public DatasourceManagerServiceException(final Throwable exception) {
19
		super(exception);
20
	}
21

    
22
}
(1-1/3)