/*========================================================================= Program: wxMaracas Module: $RCSfile: CutModelException.cxx,v $ Language: C++ Date: $Date: 2009/09/25 10:58:19 $ Version: $Revision: 1.2 $ 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. =========================================================================*/ #include "CutModelException.h" /** ** Start of the manager class **/ CutModelException::CutModelException(std::string cause) :std::exception(){ _cause = cause; } CutModelException::~CutModelException()throw(){ }