1
0
mirror of https://github.com/NGSolve/netgen.git synced 2025-03-21 22:18:00 +05:00
Joachim Schoeberl 310cb00b13 autotools
2009-01-12 23:40:13 +00:00

34 lines
698 B
C++

/**************************************************************************/
/* File: ngexception.cpp */
/* Author: Joachim Schoeberl */
/* Date: 16. Jan. 02 */
/**************************************************************************/
#include <myadt.hpp>
namespace netgen
{
//using namespace netgen;
NgException :: NgException (const string & s)
: what(s)
{
;
}
NgException :: ~NgException ()
{
;
}
/// append string to description
void NgException :: Append (const string & s)
{
what += s;
}
}