Small interface changes to Analyzer
[avr-sim.git] / AccessViolation.h
blobcd90045328400707874b2001710817e11fc2f5a3
1 #ifndef AVR_ACCESSVIOLATION_H
2 #define AVR_ACCESSVIOLATION_H
4 #include "Exception.h"
6 namespace avr {
8 class AccessViolation : public util::Exception {
9 public:
10 AccessViolation() : Exception("Access Violation") {}
11 AccessViolation(const char *msg) : Exception(msg) {}
12 AccessViolation(const std::string msg) : Exception(msg) {}
17 #endif /*AVR_ACCESSVIOLATION_H*/