Project

General

Profile

1
package eu.dnetlib.validator.commons.dao;
2

    
3
public class DaoException extends Exception {
4

    
5
	/**
6
	 * 
7
	 * @author Nikon Gasparis
8
	 *
9
	 */
10
	
11
	private static final long serialVersionUID = 1030647214820156752L;
12

    
13
	public DaoException() {
14
		super();
15
	}
16
	
17
	public  DaoException(String message) {
18
		super(message);
19
	}
20

    
21
	public  DaoException(String message, Throwable cause) {
22
		super(message, cause);
23
	}
24

    
25
	public  DaoException(Throwable cause) {
26
		super(cause);
27
	}
28
}
29

    
(3-3/4)