// archexc.h // Eric Aubourg CEA/DAPNIA/SPP septembre 1999 #ifndef ARCHEXC_H #define ARCHEXC_H #include using namespace std; class ArchExc { public: ArchExc(string s) : msg(s) {} string Msg() {return msg;} protected: string msg; }; #endif