exception.hpp /usr/include/gecode/minimodel.hh Gecode::MiniModel::TooFewArguments Gecode::MiniModel::ArgumentSizeMismatch Gecode::MiniModel::ArgumentOutOfRange Gecode Gecode::MiniModel /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> *MikaelLagerkvist<lagerkvist@gecode.org> * *Copyright: *ChristianSchulte,2004 *MikaelLagerkvist,2005 * *Lastmodified: *$Date:2008-08-2211:36:11+0200(Fri,22Aug2008)$by$Author:tack$ *$Revision:7678$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ namespaceGecode{namespaceMiniModel{ classGECODE_VTABLE_EXPORTTooFewArguments:publicException{ public: TooFewArguments(constchar*l); }; classGECODE_VTABLE_EXPORTArgumentSizeMismatch:publicException{ public: ArgumentSizeMismatch(constchar*l); }; classGECODE_VTABLE_EXPORTArgumentOutOfRange:publicException{ public: ArgumentOutOfRange(constchar*l); }; inline TooFewArguments::TooFewArguments(constchar*l) :Exception(l,"Passedargumentarrayhastoofewelements"){} inline ArgumentSizeMismatch::ArgumentSizeMismatch(constchar*l) :Exception(l,"Sizesofargumentarraysmismatch"){} inline ArgumentOutOfRange::ArgumentOutOfRange(constchar*l) :Exception(l,"Argumentoutofrange"){} }} //STATISTICS:minimodel-any