Began removal of platform/. The Monitor:: namespace is completely converted.
[aesalon.git] / src / monitor / ptrace / PTraceException.h
blobecf8108545397beca2903cb1a1ba25fe52315fcd
1 #ifndef AESALON_MONITOR_PTRACE_PTRACE_EXCEPTION_H
2 #define AESALON_MONITOR_PTRACE_PTRACE_EXCEPTION_H
4 #include "misc/Exception.h"
6 namespace Aesalon {
7 namespace Monitor {
8 namespace PTrace {
10 class PTraceException : public Misc::Exception {
11 public:
12 PTraceException(std::string message) : Misc::Exception(message) {}
13 virtual ~PTraceException() {}
16 } // namespace PTrace
17 } // namespace Monitor
18 } // namespace Aesalon
20 #endif