* Construct a runtime exception with the given message. * * @param message The message to provide for the exception. */
| 18 | * @param message The message to provide for the exception. |
| 19 | */ |
| 20 | explicit RaylibException(const std::string& message) noexcept : std::runtime_error(message) { |
| 21 | // Nothing |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Outputs the exception message to TraceLog(). |
nothing calls this directly
no outgoing calls
no test coverage detected