Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
SDL_Exception Class Referencefinal

Exception class for handling SDL errors. More...

#include <SDL_Exception.h>

Inheritance diagram for SDL_Exception:

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.
 

Detailed Description

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().

Constructor & Destructor Documentation

◆ SDL_Exception()

SDL_Exception::SDL_Exception ( const std::string & Msg)
inlineexplicit

Constructs an SDL_Exception with a custom message.

The provided message is concatenated with the current SDL error message.

Parameters
MsgA custom message describing the error.

Member Function Documentation

◆ what()

const char * SDL_Exception::what ( ) const
inlinenodiscardoverridenoexcept

Returns the error message.

Returns
A C-style string containing the error message.

Member Data Documentation

◆ msg

std::string SDL_Exception::msg
private

Stores the error message.


The documentation for this class was generated from the following file: