Intentionally not using Falcor::Exception to avoid printing the stack trace
| 72 | |
| 73 | /// Intentionally not using Falcor::Exception to avoid printing the stack trace |
| 74 | class AssertingTestException : public std::runtime_error |
| 75 | { |
| 76 | public: |
| 77 | AssertingTestException(const std::string& what) : std::runtime_error(what.c_str()) {} |
| 78 | }; |
| 79 | |
| 80 | /// Intentionally not using Falcor::Exception to avoid printing the stack trace |
| 81 | class SkippingTestException : public std::runtime_error |
no outgoing calls