------------------------------------------------------------------------------------------------
| 70 | |
| 71 | // ------------------------------------------------------------------------------------------------ |
| 72 | STEP::SyntaxError::SyntaxError (const std::string& s,uint64_t line) : DeadlyImportError(AddLineNumber(s,line)) { |
| 73 | // empty |
| 74 | } |
| 75 | |
| 76 | // ------------------------------------------------------------------------------------------------ |
| 77 | STEP::TypeError::TypeError (const std::string& s,uint64_t entity, uint64_t line) : DeadlyImportError(AddLineNumber(AddEntityID(s,entity),line)) { |
nothing calls this directly
no test coverage detected