6 lines
156 B
C++
6 lines
156 B
C++
#include <stdexcept>
|
|
|
|
class EmulatorException : public std::runtime_error {
|
|
using std::runtime_error::runtime_error;
|
|
using std::runtime_error::what;
|
|
};
|