#ifndef BOOK_EXCEPTION_H_ #define BOOK_EXCEPTION_H_ #include<stdexcept> #include<string> class bookException:public std::logic_error { public: bookException(const std::string &message=""): logic_error(message.c_str()) {} }; #endif