Bug fix: check if vm exists
[avr-sim.git] / RuntimeException.h
blobc8729c775b0ea9b97dc9d79f34ba3e563c36d26c
1 #ifndef UTIL_RUNTIMEEXCEPTION_H
2 #define UTIL_RUNTIMEEXCEPTION_H
4 #include "Exception.h"
6 namespace util {
7 class RuntimeException : public Exception {
8 public:
9 RuntimeException() : Exception("Runtime Exception") {}
10 RuntimeException(const char *s) : Exception(s) {}
11 RuntimeException(const std::string & s) : Exception(s) {}
14 #endif