Exception.h
Go to the documentation of this file.
1 
47 #ifndef CPR_EXCEPTION_H
48 #define CPR_EXCEPTION_H
49 
50 #include <iostream>
51 
52 namespace clearpath
53 {
54 
55  class Exception
56  {
57  public:
58  const char *message;
59 
60  protected:
61  Exception(const char *msg = "none") : message(msg)
62  {
63  }
64  };
65 
66 }; // namespace clearpath
67 
68 #endif // CPR_EXCEPTION_H
msg
const char * message
Definition: Exception.h:58
Exception(const char *msg="none")
Definition: Exception.h:61


husky_base
Author(s): Mike Purvis , Paul Bovbel
autogenerated on Fri Oct 2 2020 03:40:07