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