Project

General

Profile

1
package eu.dnetlib.dhp.common.java;
2

    
3
/**
4
 * Command line parsing exception
5
 * @author Mateusz Kobos
6
 *
7
 */
8
public class CmdLineParserException extends RuntimeException {
9
	/**
10
	 * 
11
	 */
12
	private static final long serialVersionUID = 9219928547611876284L;
13

    
14
	public CmdLineParserException(String message){
15
		super(message);
16
	}
17
	
18
	public CmdLineParserException(String message, Throwable cause){
19
		super(message, cause);
20
	}
21
}
(2-2/11)