// Exception handling #ifndef ERROR_H #define ERROR_H #include #include using namespace std; //-------------------------------------------------------------------- // Exception handler //-------------------------------------------------------------------- class Fatal { private: string msg; public: Fatal( const char* const fmt, ... ); Fatal( string& msg ); void print(); }; #endif //-------------------------------------------------------------------- // Local Variables: // mode:c++ // End: