//************************************************************* // Header file IOExceptions.h for the bowlingAlley and party // classes. // Programming Project 4 // CS 241 Data Structures // Fall 2003 //************************************************************* using namespace std; #include #ifndef IOEXCEPTIONS_H #define IOEXCEPTIONS_H class inputException { public: inputException(const string& message): _message(message){} string what(){return _message;} private: string _message; }; class outputException { public: outputException(const string& message): _message(message){} string what(){return _message;} private: string _message; }; #endif