source: src/main/java/genius/core/exceptions/AnalysisException.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 549 bytes
Line 
1package genius.core.exceptions;
2
3/**
4 * Exception illustrating that calculating a feature of the bidspace (for
5 * example the Nash point) went wrong.
6 */
7public class AnalysisException extends NegotiatorException {
8
9 private static final long serialVersionUID = 3591281849194003876L;
10
11 /**
12 * Error message to be reported.
13 *
14 * @param message
15 * shown as error.
16 */
17 public AnalysisException(String message) {
18 super(message);
19 }
20
21 public AnalysisException(String string, Error e) {
22 super(string, e);
23 }
24}
Note: See TracBrowser for help on using the repository browser.