exception.cpp
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
00023
00024
00025
00026
00027
00028
00029
00030
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