Project

General

Profile

« Previous | Next » 

Revision 41733

moving service interfaces to eu.dnetlib.rmi

View differences:

CollectionServiceException.java
1
package eu.dnetlib.rmi.data;
2

  
3

  
4
import javax.xml.ws.WebFault;
5

  
6
import eu.dnetlib.rmi.common.RMIException;
7

  
8
@WebFault
9
public class CollectionServiceException extends RMIException {
10
	
11
	/**
12
	 * 
13
	 */
14
	private static final long serialVersionUID = 8094008463553904905L;
15

  
16
	public CollectionServiceException(Throwable e) {
17
		super(e);
18
	}
19

  
20
	public CollectionServiceException(String message, Throwable e) {
21
		super(message, e);
22
	}
23

  
24
	public CollectionServiceException(String message) {
25
		super(message);
26
	}
27

  
28
}

Also available in: Unified diff