system_error.h 143 B

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