aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/backend/exceptions/InvalidArgumentsException.java
blob: bbae9768c79b94a8552e6ffbc14b42c8aeea845f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package jcgp.backend.exceptions;

public class InvalidArgumentsException extends RuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 2675108124600817777L;
	private String reason;
	
	public InvalidArgumentsException(String reason) {
		super();
		this.reason = reason;
	}
	
	public String getReason() {
		return reason;
	}

}