Generated on Fri Oct 6 16:26:44 2006 for Gecode/J by doxygen 1.4.7

GecodeException.java

Go to the documentation of this file.
00001 /*
00002  *  Main authors:
00003  *     Guido Tack <tack@gecode.org>
00004  *
00005  *  Copyright:
00006  *     Guido Tack, 2006
00007  *
00008  *  Last modified:
00009  *     $Date: 2006-09-11 17:06:50 +0200 (Mon, 11 Sep 2006) $ by $Author: zayenz $
00010  *     $Revision: 3650 $
00011  *
00012  *  This file is part of Gecode, the generic constraint
00013  *  development environment:
00014  *     http://www.gecode.org
00015  *
00016  *  See the file "LICENSE" for information on usage and
00017  *  redistribution of this file, and for a
00018  *     DISCLAIMER OF ALL WARRANTIES.
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 }