error.hpp 221 B

1234567891011121314151617
  1. #ifndef ERROR_HPP
  2. #define ERROR_HPP
  3. #include <string>
  4. using namespace std;
  5. class Error{
  6. public:
  7. string msg;
  8. static void string_error(string msg,string str,size_t pos);
  9. static void error(string msg);
  10. };
  11. #endif