00001 /*========================================================================= 00002 00003 Program: wxMaracas 00004 Module: $RCSfile: CutModelException.cxx,v $ 00005 Language: C++ 00006 Date: $Date: 2009/09/25 10:58:19 $ 00007 Version: $Revision: 1.2 $ 00008 00009 Copyright: (c) 2002, 2003 00010 License: 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notice for more information. 00015 00016 =========================================================================*/ 00017 #include "CutModelException.h" 00018 00022 CutModelException::CutModelException(std::string cause) 00023 :std::exception(){ 00024 _cause = cause; 00025 } 00026 CutModelException::~CutModelException()throw(){ 00027 } 00028 00029 00030 00031