Project

General

Profile

1
package eu.dnetlib.data.mdstore.utils;
2

    
3
import eu.dnetlib.exceptions.DnetGenericRuntimeException;
4

    
5
/**
6
 * Created by claudio on 13/03/2017.
7
 */
8
public class MDStoreRuntimeException extends DnetGenericRuntimeException {
9

    
10
	public MDStoreRuntimeException() {
11
	}
12

    
13
	public MDStoreRuntimeException(final String message, final Throwable cause) {
14
		super(message, cause);
15
	}
16

    
17
	public MDStoreRuntimeException(final String message) {
18
		super(message);
19
	}
20

    
21
	public MDStoreRuntimeException(final Throwable cause) {
22
		super(cause);
23
	}
24
}
(4-4/6)