system_error.h 153 B

1234567891011
  1. #pragma once
  2. #include <string>
  3. namespace am {
  4. class system_error
  5. {
  6. public:
  7. static std::string error2str(unsigned long error);
  8. };
  9. } // namespace am