blob: de277724164aa94d6f9d812842542abd5ad9d5bc [file] [log] [blame]
Krzysztof Grobelny973b4bb2022-04-25 17:07:27 +02001#pragma once
2
3#include "error_type.hpp"
4
5#include <string>
6
7struct ErrorMessage
8{
9 ErrorType error;
10 std::string arg0;
11};