LGI  1.0
Lliurex Graphic Interface
exceptions.hpp
Go to the documentation of this file.
1 
2 #ifndef _LGI_EXCEPTIONS_
3 #define _LGI_EXCEPTIONS_
4 
5 #include <exception>
6 
7 namespace net
8 {
9  namespace lliurex
10  {
11  namespace lgi
12  {
13  class Exception: public std::exception
14  {
15  public:
16 
17  std::string msg;
18  Exception(std::string msg);
19  virtual ~Exception() throw();
20  const char* what() const throw();
21 
22  };
23  }
24  }
25 }
26 
27 #endif
Exception(std::string msg)
std::string msg
Definition: exceptions.hpp:17
Definition: application.hpp:9
Definition: exceptions.hpp:13
const char * what() const