| 65 | {}; |
| 66 | |
| 67 | class ErrorRunningTestException : public Exception |
| 68 | { |
| 69 | public: |
| 70 | ErrorRunningTestException(const std::string& what) : Exception(what) {} |
| 71 | }; |
| 72 | |
| 73 | /// Intentionally not using Falcor::Exception to avoid printing the stack trace |
| 74 | class AssertingTestException : public std::runtime_error |
no outgoing calls