Bitstream Interpretation Library (BIL)  0.1
Exception.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 #ifndef BIL_EXCEPTION_HPP
8 #define BIL_EXCEPTION_HPP
9 
10 #include <stdexcept>
11 #include <string>
12 
13 
14 namespace bil {
15 
21  class Exception: public std::runtime_error {
22  public:
23 
27  Exception() throw();
28 
33  explicit Exception(const std::string& what_arg) throw();
34 
35  };
36 
37 }
38 
39 #endif