Path: blob/devel/ElmerGUI/netgen/libsrc/general/ngexception.hpp
3206 views
#ifndef FILE_NGEXCEPTION1#define FILE_NGEXCEPTION23/**************************************************************************/4/* File: ngexception.hpp */5/* Author: Joachim Schoeberl */6/* Date: 16. Jan. 2002 */7/**************************************************************************/8910/// Base class for all ng exceptions11class NgException12{13/// verbal description of exception14string what;15public:16///17NgException (const string & s);18///19virtual ~NgException ();2021/// append string to description22void Append (const string & s);23// void Append (const char * s);2425/// verbal description of exception26const string & What() const { return what; }27};2829#endif303132