![]() |
Ankush's Garage
A collection of stuff made by Ankush Roy
|
Exception class for handling SDL errors. More...
#include <SDL_Exception.h>
Public Member Functions | |
SDL_Exception (const std::string &Msg) | |
Constructs an SDL_Exception with a custom message. | |
const char * | what () const noexcept override |
Returns the error message. | |
Private Attributes | |
std::string | msg |
Stores the error message. | |
Exception class for handling SDL errors.
This class extends std::exception and provides a mechanism to capture and report SDL-specific errors, including the message provided by SDL_GetError().
|
inlineexplicit |
Constructs an SDL_Exception with a custom message.
The provided message is concatenated with the current SDL error message.
Msg | A custom message describing the error. |
|
inlinenodiscardoverridenoexcept |
Returns the error message.
|
private |
Stores the error message.