Project

General

Profile

1
package eu.dnetlib.data.claimsDemo;
2

    
3
/**
4
 * Created by argirok on 12/5/2017.
5
 */
6
public class SQLStoreException extends Throwable {
7
    public SQLStoreException() {
8
        super();
9
    }
10

    
11
    public SQLStoreException(String message, Throwable cause) {
12
        super(message, cause);
13
    }
14

    
15
    public SQLStoreException(String message) {
16
        super(message);
17
    }
18

    
19
    public SQLStoreException(Throwable cause) {
20
        super(cause);
21
    }
22
}
(5-5/9)