ROSE  0.11.145.0
Rose/BinaryAnalysis/Debugger/Exception.h
1 #ifndef ROSE_BinaryAnalysis_Debugger_Exception_H
2 #define ROSE_BinaryAnalysis_Debugger_Exception_H
3 #include <featureTests.h>
4 #ifdef ROSE_ENABLE_BINARY_ANALYSIS
5 #include <Rose/Exception.h>
6 
7 namespace Rose {
8 namespace BinaryAnalysis {
9 namespace Debugger {
10 
12 class Exception: public Rose::Exception {
13 public:
15  Exception(const std::string &mesg);
16 
17  ~Exception() throw();
18 };
19 
20 } // namespace
21 } // namespace
22 } // namespace
23 
24 #endif
25 #endif
Main namespace for the ROSE library.
Exception(const std::string &mesg)
Construct new exception with message.
Base class for all ROSE exceptions.
Definition: Rose/Exception.h:9