#include #include using namespace std; class ListIndexOutOfRangeException: public logic_error { public: ListIndexOutOfRangeException(const string & message = "") : logic_error(message.c_str()) { } }; // end ListIndexOutOfRangeException