Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 #ifndef _EXCEPTIONS_HPP
00053 #define _EXCEPTIONS_HPP
00054
00055 #include <exception>
00056 #include <stdexcept>
00057 #include <iostream>
00058 #include <string>
00059
00060 using namespace std;
00061 namespace youbot
00062 {
00063
00065 class FileNotFoundException : public std::ios_base::failure
00066 {
00067 string msg;
00068
00069 public:
00070
00071 explicit FileNotFoundException(const string& message) throw () :
00072 std::ios_base::failure(message)
00073 {
00074 msg = message + " file not found";
00075 }
00076 ;
00077
00078 virtual ~FileNotFoundException() throw ()
00079 {
00080 }
00081 ;
00082
00083
00084 virtual const char* what() const throw ()
00085 {
00086 return msg.c_str();
00087 }
00088 ;
00089 };
00090
00092 class KeyNotFoundException : public std::ios_base::failure
00093 {
00094 string msg;
00095
00096 public:
00097
00098 explicit KeyNotFoundException(const string& message) throw () :
00099 std::ios_base::failure(message)
00100 {
00101 msg = message + " key in config file not found";
00102 }
00103 ;
00104
00105 virtual ~KeyNotFoundException() throw ()
00106 {
00107 }
00108 ;
00109
00110
00111 virtual const char* what() const throw ()
00112 {
00113 return msg.c_str();
00114 }
00115 ;
00116 };
00118 class JointParameterException : public std::runtime_error
00119 {
00120 string msg;
00121
00122 public:
00123
00124 explicit JointParameterException(const string& message) throw () :
00125 std::runtime_error(message)
00126 {
00127 msg = message;
00128 }
00129 ;
00130
00131 virtual ~JointParameterException() throw ()
00132 {
00133 }
00134 ;
00135
00136
00137 virtual const char* what() const throw ()
00138 {
00139 return msg.c_str();
00140 }
00141 ;
00142 };
00144 class JointErrorException : public std::runtime_error
00145 {
00146 string msg;
00147
00148 public:
00149
00150 explicit JointErrorException(const string& message) throw () :
00151 std::runtime_error(message)
00152 {
00153 msg = message;
00154 }
00155 ;
00156
00157 virtual ~JointErrorException() throw ()
00158 {
00159 }
00160 ;
00161
00162
00163 virtual const char* what() const throw ()
00164 {
00165 return msg.c_str();
00166 }
00167 ;
00168 };
00170 class EtherCATConnectionException : public std::runtime_error
00171 {
00172 string msg;
00173
00174 public:
00175
00176 explicit EtherCATConnectionException(const string& message) throw () :
00177 std::runtime_error(message)
00178 {
00179 msg = message;
00180 }
00181 ;
00182
00183 virtual ~EtherCATConnectionException() throw ()
00184 {
00185 }
00186 ;
00187
00188
00189 virtual const char* what() const throw ()
00190 {
00191 return msg.c_str();
00192 }
00193 ;
00194 };
00195
00196 }
00197 #endif //_EXCEPTIONS_HPP