| 27 | {} |
| 28 | |
| 29 | SymbolsXmlParse::SymbolsXmlParse(const char* desc, int id, int row, int col) |
| 30 | :AllSymbols(fmt::format("error {}: {}, at row {} col {}", id, desc, row, col)), |
| 31 | desc(safe_str(desc)), id(id), row(row), col(col) |
| 32 | {} |
| 33 | |
| 34 | SymbolsXmlBadAttribute::SymbolsXmlBadAttribute(const char *attr) |
| 35 | :AllSymbols("attribute is either missing or invalid: " + safe_str(attr)), |
nothing calls this directly
no test coverage detected