Error.cpp 135 B

123456789
  1. #include "utils/Error.h"
  2. bool Error::has() const {
  3. return message.getLength() > 0;
  4. }
  5. void Error::reset() {
  6. message.clear();
  7. }