Now you can download a copy of these docs so you can use them offline! Download now
BadMessageException.h
1 /*
2  * BadMessageException.h
3  *
4  * Created on: Sep 16, 2012
5  * Author: Mitchell Wills
6  */
7 
8 #ifndef BADMESSAGEEXCEPTION_H_
9 #define BADMESSAGEEXCEPTION_H_
10 
11 #include <exception>
12 #include <string>
13 
14 class BadMessageException : public std::exception
15 {
16 public:
17  BadMessageException(const char* message);
18  ~BadMessageException() throw ();
19  const char* what();
20 private:
21  std::string message;
22 };
23 
24 #endif /* BADMESSAGEEXCEPTION_H_ */

Generated on Sat Apr 26 2014 12:26:45 for WPILibC++ by doxygen 1.8.6