Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/ElmerGUI/netgen/libsrc/general/ngexception.cpp
3206 views
1
/**************************************************************************/
2
/* File: ngexception.cpp */
3
/* Author: Joachim Schoeberl */
4
/* Date: 16. Jan. 02 */
5
/**************************************************************************/
6
7
#include <myadt.hpp>
8
9
namespace netgen
10
{
11
//using namespace netgen;
12
13
14
15
NgException :: NgException (const string & s)
16
: what(s)
17
{
18
;
19
}
20
21
22
NgException :: ~NgException ()
23
{
24
;
25
}
26
27
/// append string to description
28
void NgException :: Append (const string & s)
29
{
30
what += s;
31
}
32
33
}
34
35