vgbc/misc/exception.h

7 lines
156 B
C
Raw Normal View History

2023-09-01 15:11:27 +02:00
#include <stdexcept>
class EmulatorException : public std::runtime_error {
using std::runtime_error::runtime_error;
using std::runtime_error::what;
};