aboutsummaryrefslogtreecommitdiffstats
path: root/Solvers/ILP-Solver/hu.bme.mit.inf.dslreasoner.ilp.cbc/src/hu/bme/mit/inf/dslreasoner/ilp/cbc/CbcException.java
blob: 26846958fe7f7c1da5c20edc045d60048f562a19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package hu.bme.mit.inf.dslreasoner.ilp.cbc;

public class CbcException extends RuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 2691773509078511887L;

	public CbcException() {
		super();
	}

	public CbcException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

	public CbcException(String message, Throwable cause) {
		super(message, cause);
	}

	public CbcException(String message) {
		super(message);
	}

	public CbcException(Throwable cause) {
		super(cause);
	}

}