Error.h 169 B

12345678910111213
  1. #ifndef ERROR_H
  2. #define ERROR_H
  3. #include "utils/StringBuffer.h"
  4. struct Error final {
  5. StringBuffer<256> message;
  6. bool has() const;
  7. void reset();
  8. };
  9. #endif