Project

General

Profile

1
package eu.dnetlib.dhp.wf.importer.facade;
2

    
3
/**
4
 * Service facade generic exception. 
5
 * 
6
 * @author mhorst
7
 *
8
 */
9
public class ServiceFacadeException extends Exception {
10

    
11
    private static final long serialVersionUID = 0L;
12

    
13
    //------------------------ CONSTRUCTORS -------------------
14

    
15
    public ServiceFacadeException(String message, Throwable cause) {
16
        super(message, cause);
17
    }
18

    
19
    public ServiceFacadeException(String message) {
20
        super(message);
21
    }
22

    
23
    public ServiceFacadeException(Throwable cause) {
24
        super(cause);
25
    }
26

    
27
}
(5-5/13)