/*========================================================================= Program: wxMaracas Module: $RCSfile: CutModelException.h,v $ Language: C++ Date: $Date: 2009/08/31 08:46:11 $ Version: $Revision: 1.1 $ Copyright: (c) 2002, 2003 License: This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #ifndef __CutModelExceptionH__ #define __CutModelExceptionH__ #include #include class CutModelException : public std::exception{ public: CutModelException(std::string cause); ~CutModelException(); std::string getCause(){ return _cause; } private: std::string _cause; }; #endif