/*========================================================================= Program: wxMaracas Module: $RCSfile: CutModel2Exception.cxx,v $ Language: C++ Date: $Date: 2009/11/19 15:24:57 $ 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. =========================================================================*/ #include "CutModel2Exception.h" /** ** Start of the manager class **/ CutModel2Exception::CutModel2Exception(std::string cause) :std::exception(){ _cause = cause; } CutModel2Exception::~CutModel2Exception()throw(){ }