bwidgets/inc/basic_widgets/core/type/sdl_error.hpp

16 lines
288 B
C++
Raw Normal View History

2021-08-06 14:22:56 +02:00
#ifndef BWIDGETS_SDL_ERROR_HPP
#define BWIDGETS_SDL_ERROR_HPP
#include <basic_widgets/core/type/exception.hpp>
2021-08-06 14:22:56 +02:00
namespace bwidgets
{
2021-08-23 23:50:14 +02:00
// Custom exception type for SDL errors.
struct SDLError final : BaseException
{
2021-08-13 22:00:42 +02:00
using BaseException::BaseException;
};
}
#endif