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