| 21 | }; |
| 22 | |
| 23 | CircularReferenceError::CircularReferenceError(String message, std::vector<String> path) |
| 24 | : m_Message(message), m_Path(path) |
| 25 | { } |
| 26 | |
| 27 | const char *CircularReferenceError::what(void) const throw() |
| 28 | { |
nothing calls this directly
no outgoing calls
no test coverage detected