Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
SDL_Exception.h
Go to the documentation of this file.
1#ifndef INCLUDE_COMMON_SDLEXCEPTION_H_
2#define INCLUDE_COMMON_SDLEXCEPTION_H_
3
4#include "Core/Common/pch.h"
5
12class SDL_Exception final : public std::exception
13{
14 private:
15 std::string msg;
16
17 public:
25 explicit SDL_Exception(const std::string &Msg) :
26 msg("SDL_Error: " + Msg + '\n' + SDL_GetError())
27 {
28 }
29
35 [[nodiscard]] const char *what() const noexcept override
36 {
37 return msg.c_str();
38 }
39};
40
41#endif // INCLUDE_COMMON_SDLEXCEPTION_H_
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