FatalException.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 package org.gecode;
00023
00028 public class FatalException extends RuntimeException {
00029 public FatalException() { super("Fatal Exception in Gecode"); }
00030 public FatalException(String message) {
00031 super("Fatal Exception in Gecode: " + message);
00032 }
00033 public FatalException(String message, Throwable cause) {
00034 super("Fatal Exception in Gecode: " + message, cause);
00035 }
00036 public FatalException(Throwable cause) {
00037 super("Fatal Exception in Gecode", cause);
00038 }
00039 }