1#ifndef INCLUDE_COMMON_SDLEXCEPTION_H_
2#define INCLUDE_COMMON_SDLEXCEPTION_H_
26 msg(
"SDL_Error: " + Msg +
'\n' + SDL_GetError())
35 [[nodiscard]]
const char *
what() const noexcept
override
std::string msg
Stores the error message.
Definition SDL_Exception.h:15
SDL_Exception(const std::string &Msg)
Constructs an SDL_Exception with a custom message.
Definition SDL_Exception.h:25
const char * what() const noexcept override
Returns the error message.
Definition SDL_Exception.h:35