Project

General

Profile

1
/**
2
 * 
3
 */
4
package eu.dnetlib.utils.cql;
5

    
6
/**
7
 * @author stoumpos
8
 * 
9
 */
10

    
11
@SuppressWarnings("serial")
12
public class CqlRuntimeException extends RuntimeException {
13
	
14
	public CqlRuntimeException(String message, Throwable cause) {
15
		super(message, cause);
16
	}
17

    
18
}
(9-9/10)