#ifndef ERROR_H
#define ERROR_H

#include "utils/StringBuffer.h"

struct Error final {
    StringBuffer<256> message;

    bool has() const;
    void reset();
};

#endif