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