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