blob: b8246cfb210887acfc8d72de55969517f3ba4080 [file] [log] [blame]
Marri Devender Rao0deb2872018-11-12 07:45:54 -06001## This file is a template. The comment below is emitted
2## into the rendered file; feel free to edit this file.
3// !!! WARNING: This is a GENERATED Code..Please do NOT Edit !!!
Dhruvaraj Subhashchandran94adf682023-05-31 14:58:47 -05004#include "errors_map.hpp"
Marri Devender Rao0deb2872018-11-12 07:45:54 -06005
6const ErrorMap errorMap = {
7% for key, errors in errDict.items():
8 {"${key}", {
9 % for error in errors:
10 "${error}",
11 % endfor
12 }},
13% endfor
14};