Exception.h
Go to the documentation of this file.
1 
38 #ifndef CPR_EXCEPTION_H
39 #define CPR_EXCEPTION_H
40 
41 #include <iostream>
42 
43 namespace sawyer
44 {
45 
46  class Exception
47  {
48  public:
49  const char *message;
50 
51  protected:
52  Exception(const char *msg = "none") : message(msg)
53  {
54  }
55  };
56 
57 }; // namespace sawyer
58 
59 #endif // CPR_EXCEPTION_H
msg
Exception(const char *msg="none")
Definition: Exception.h:52
const char * message
Definition: Exception.h:49


roch_base
Author(s): Mike Purvis , Paul Bovbel , Chen
autogenerated on Mon Jun 10 2019 14:41:13