]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/CutModule/kernel/CutModelException.cxx
no message
[creaMaracasVisu.git] / lib / maracasVisuLib / src / CutModule / kernel / CutModelException.cxx
1 /*=========================================================================
2
3   Program:   wxMaracas
4   Module:    $RCSfile: CutModelException.cxx,v $
5   Language:  C++
6   Date:      $Date: 2009/09/25 10:58:19 $
7   Version:   $Revision: 1.2 $
8
9   Copyright: (c) 2002, 2003
10   License:
11
12      This software is distributed WITHOUT ANY WARRANTY; without even
13      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14      PURPOSE.  See the above copyright notice for more information.
15
16 =========================================================================*/
17 #include "CutModelException.h"
18
19 /**
20 **      Start of the manager class
21 **/
22 CutModelException::CutModelException(std::string cause)
23 :std::exception(){
24     _cause = cause;     
25 }
26 CutModelException::~CutModelException()throw(){
27 }
28
29
30
31