Generated on Tue May 22 09:39:46 2018 for Gecode by doxygen 1.6.3

exception.cpp

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main authors:
00004  *     Christian Schulte <schulte@gecode.org>
00005  *
00006  *  Copyright:
00007  *     Christian Schulte, 2004
00008  *
00009  *  This file is part of Gecode, the generic constraint
00010  *  development environment:
00011  *     http://www.gecode.org
00012  *
00013  *  Permission is hereby granted, free of charge, to any person obtaining
00014  *  a copy of this software and associated documentation files (the
00015  *  "Software"), to deal in the Software without restriction, including
00016  *  without limitation the rights to use, copy, modify, merge, publish,
00017  *  distribute, sublicense, and/or sell copies of the Software, and to
00018  *  permit persons to whom the Software is furnished to do so, subject to
00019  *  the following conditions:
00020  *
00021  *  The above copyright notice and this permission notice shall be
00022  *  included in all copies or substantial portions of the Software.
00023  *
00024  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00025  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00026  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00027  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
00028  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
00029  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
00030  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00031  *
00032  */
00033 
00034 #include <gecode/kernel.hh>
00035 
00036 namespace Gecode {
00037 
00038   SpaceFailed::SpaceFailed(const char* l)
00039     : Exception(l,"Attempt to invoke operation on failed space") {}
00040 
00041   SpaceNotStable::SpaceNotStable(const char* l)
00042     : Exception(l,"Attempt to invoke operation on not stable space") {}
00043 
00044   SpaceNotCloned::SpaceNotCloned(const char* l)
00045     : Exception(l,"Copy constructor of space did not call base class copy constructor") {}
00046 
00047   SpaceNoBrancher::SpaceNoBrancher(const char* l)
00048     : Exception(l,"Attempt to commit with no brancher") {}
00049 
00050   SpaceIllegalAlternative::SpaceIllegalAlternative(const char* l)
00051     : Exception(l,"Attempt to commit with illegal alternative") {}
00052 
00053   TooManyGroups::TooManyGroups(const char* l)
00054     : Exception(l,"Too many groups created") {}
00055 
00056   UnknownPropagator::UnknownPropagator(const char* l)
00057     : Exception(l,"Unknown propagator (illegal id)") {}
00058 
00059   TooManyBranchers::TooManyBranchers(const char* l)
00060     : Exception(l,"Too many branchers created") {}
00061 
00062   UnknownBrancher::UnknownBrancher(const char* l)
00063     : Exception(l,"Unknown brancher (illegal id)") {}
00064 
00065   UninitializedAFC::UninitializedAFC(const char* l)
00066     : Exception(l,"Uninitialized AFC information for branching") {}
00067 
00068   UninitializedAction::UninitializedAction(const char* l)
00069     : Exception(l,"Uninitialized action information for branching") {}
00070 
00071   UninitializedCHB::UninitializedCHB(const char* l)
00072     : Exception(l,"Uninitialized CHB information for branching") {}
00073 
00074   UninitializedRnd::UninitializedRnd(const char* l)
00075     : Exception(l,"Uninitialized random generator for branching") {}
00076 
00077   IllegalDecay::IllegalDecay(const char* l)
00078     : Exception(l,"Illegal decay factor") {}
00079 
00080   InvalidFunction::InvalidFunction(const char* l)
00081     : Exception(l,"Invalid function") {}
00082 
00083   MoreThanOneTracer::MoreThanOneTracer(const char* l)
00084     : Exception(l,"Attempt create more than one non-variable tracer") {}
00085 
00086 }
00087 
00088 // STATISTICS: kernel-other