library_management_system

姬承教
2023-12-01
#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


 

 类似资料:

相关阅读

相关文章

相关问答