io_exception.hpp
Go to the documentation of this file.
1 
18 #ifndef IO_EXCEPTION_HPP
19 #define IO_EXCEPTION_HPP
20 
21 #include <string>
22 
23 
24 namespace cpe
25 {
26 
27 
30 {
31 public:
32 
34  io_exception();
36  io_exception(const std::string& msg,const std::string& file,const std::string& caller,const int& line);
37 
39  std::string info() const;
40 
41 private:
42 
44  std::string message;
46  std::string caller;
48  std::string file;
50  std::string line;
51 
52 };
53 
54 }
55 
56 
57 #endif