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/int.hh>
00035
00036 namespace Gecode { namespace Int {
00037
00038 OutOfLimits::OutOfLimits(const char* l)
00039 : Exception(l,"Number out of limits") {}
00040
00041 VariableEmptyDomain::VariableEmptyDomain(const char* l)
00042 : Exception(l,"Attempt to create variable with empty domain") {}
00043
00044 NotZeroOne::NotZeroOne(const char* l)
00045 : Exception(l,"Not a zero/one integer value") {}
00046
00047 TooFewArguments::TooFewArguments(const char* l)
00048 : Exception(l,"Passed argument array has too few elements") {}
00049
00050 ArgumentSizeMismatch::ArgumentSizeMismatch(const char* l)
00051 : Exception(l,"Sizes of argument arrays mismatch") {}
00052
00053 ArgumentSame::ArgumentSame(const char* l)
00054 : Exception(l,"Argument array contains same variable multiply") {}
00055
00056 UnknownRelation::UnknownRelation(const char* l)
00057 : Exception(l,"Unknown relation type") {}
00058
00059 UnknownOperation::UnknownOperation(const char* l)
00060 : Exception(l,"Unknown operation type") {}
00061
00062 IllegalOperation::IllegalOperation(const char* l)
00063 : Exception(l,"Illegal operation type") {}
00064
00065 UnknownBranching::UnknownBranching(const char* l)
00066 : Exception(l,"Unknown branching type") {}
00067
00068 UnknownReifyMode::UnknownReifyMode(const char* l)
00069 : Exception(l,"Unknown reification mode") {}
00070
00071 ValOfUnassignedVar::ValOfUnassignedVar(const char* l)
00072 : Exception(l,"Attempt to access value of unassigned variable") {}
00073
00074 UninitializedTupleSet::UninitializedTupleSet(const char* l)
00075 : Exception(l,"Attempt to use uninitialized tuple set") {}
00076
00077 NotYetFinalized::NotYetFinalized(const char* l)
00078 : Exception(l,"Tuple set not yet finalized") {}
00079
00080 AlreadyFinalized::AlreadyFinalized(const char* l)
00081 : Exception(l,"Tuple set already finalized") {}
00082
00083 LDSBUnbranchedVariable::LDSBUnbranchedVariable(const char* l)
00084 : Exception(l,"Variable in symmetry not branched on") {}
00085
00086 LDSBBadValueSelection::LDSBBadValueSelection(const char* l)
00087 : Exception(l,"Value selection incomatible with LDSB") {}
00088
00089 }}
00090
00091
00092