Project

General

Profile

1
package eu.dnetlib.rmi.data;
2

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

    
5
/**
6
 * The Class ObjectStoreServiceException.
7
 */
8
public class ObjectStoreServiceException extends RMIException {
9

    
10
	/**
11
	 * The Constant serialVersionUID.
12
	 */
13
	private static final long serialVersionUID = -7073846285219543315L;
14

    
15
	/**
16
	 * Instantiates a new object store service exception.
17
	 *
18
	 * @param string the string
19
	 */
20
	public ObjectStoreServiceException(final String string) {
21
		super(string);
22
	}
23

    
24
	/**
25
	 * Instantiates a new object store service exception.
26
	 *
27
	 * @param string    the string
28
	 * @param exception the exception
29
	 */
30
	public ObjectStoreServiceException(final String string, final Throwable exception) {
31
		super(string, exception);
32
	}
33

    
34
	/**
35
	 * Instantiates a new object store service exception.
36
	 *
37
	 * @param exception the exception
38
	 */
39
	public ObjectStoreServiceException(final Throwable exception) {
40
		super(exception);
41
	}
42

    
43
}
(30-30/38)