Path: blob/devel/ElmerGUI/netgen/libsrc/general/ngexception.cpp
3206 views
/**************************************************************************/1/* File: ngexception.cpp */2/* Author: Joachim Schoeberl */3/* Date: 16. Jan. 02 */4/**************************************************************************/56#include <myadt.hpp>78namespace netgen9{10//using namespace netgen;11121314NgException :: NgException (const string & s)15: what(s)16{17;18}192021NgException :: ~NgException ()22{23;24}2526/// append string to description27void NgException :: Append (const string & s)28{29what += s;30}3132}333435