| 65 | boost::lexical_cast<std::string>(token_start) + |
| 66 | " invalid " + expected_type) {} |
| 67 | IfcInvalidTokenException( |
| 68 | size_t token_start, |
| 69 | char character) |
| 70 | : IfcException( |
| 71 | std::string("Unexpected '") + std::string(1, character) + "' at offset " + |
| 72 | boost::lexical_cast<std::string>(token_start)) {} |
| 73 | ~IfcInvalidTokenException() override; |
| 74 | }; |
| 75 |
no outgoing calls
no test coverage detected