Marri Devender Rao | 0deb287 | 2018-11-12 07:45:54 -0600 | [diff] [blame] | 1 | ## 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 Subhashchandran | 94adf68 | 2023-05-31 14:58:47 -0500 | [diff] [blame^] | 4 | #include "errors_map.hpp" |
Marri Devender Rao | 0deb287 | 2018-11-12 07:45:54 -0600 | [diff] [blame] | 5 | |
| 6 | const ErrorMap errorMap = { |
| 7 | % for key, errors in errDict.items(): |
| 8 | {"${key}", { |
| 9 | % for error in errors: |
| 10 | "${error}", |
| 11 | % endfor |
| 12 | }}, |
| 13 | % endfor |
| 14 | }; |