blob: 13895095162eba226bbbd3c237f1b169eefe4687 [file] [log] [blame]
Dhruvaraj Subhashchandran94adf682023-05-31 14:58:47 -05001#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7using EType = std::string;
8using Error = std::string;
9using ErrorList = std::vector<Error>;
10using ErrorMap = std::map<EType, ErrorList>;
11
12extern const ErrorMap errorMap;