Project

General

Profile

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

    
3
import javax.xml.ws.WebFault;
4

    
5
@WebFault(name = "DnetSoapException", targetNamespace = "http://services.dnetlib.eu/")
6
abstract public class DnetSoapException extends Exception { // NOPMD
7

    
8
	/**
9
	 * 
10
	 */
11
	private static final long serialVersionUID = 428841258652765265L;
12

    
13
	public DnetSoapException(final Throwable exception) {
14
		super(exception);
15
	}
16

    
17
	public DnetSoapException(final String string) {
18
		super(string);
19
	}
20

    
21
	public DnetSoapException(final String string, final Throwable exception) {
22
		super(string, exception);
23
	}
24
}
(2-2/4)