retdec
exceptions.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_CTYPES_EXCEPTIONS_H
8 #define RETDEC_CTYPES_EXCEPTIONS_H
9 
10 #include <stdexcept>
11 
12 namespace retdec {
13 namespace ctypes {
14 
18 class CTypesError: public std::runtime_error
19 {
20  public:
21  using std::runtime_error::runtime_error;
22 };
23 
24 } // namespace ctypes
25 } // namespace retdec
26 
27 #endif
Base class for all C-types errors.
Definition: exceptions.h:19
Definition: archive_wrapper.h:19