Scarab  v3.4.2
Project 8 C++ Utility Library
error.hh
Go to the documentation of this file.
1 #ifndef SCARAB_EXCEPTION_HH_
2 #define SCARAB_EXCEPTION_HH_
3 
4 #include "base_exception.hh"
5 #include "scarab_api.hh"
6 
7 namespace scarab
8 {
9 
10  class SCARAB_API error : public base_exception< error >
11  {
12  public:
13  error() = default;
14  error( const error& ) = default;
15  ~error() noexcept = default;
16  };
17 
18 }
19 
20 #endif /* SCARAB_EXCEPTION_HH_ */
#define SCARAB_API
Definition: scarab_api.hh:24
Base class for exceptions with streaming operators.