GecodeException.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 GecodeException extends RuntimeException {
00029 public GecodeException() { super("Exception in Gecode"); }
00030 public GecodeException(String message) {
00031 super("Exception in Gecode: " + message);
00032 }
00033 public GecodeException(String message, Throwable cause) {
00034 super("Exception in Gecode: " + message, cause);
00035 }
00036 public GecodeException(Throwable cause) {
00037 super("Exception in Gecode", cause);
00038 }
00039 }