Now you can download a copy of these docs so you can use them offline! Download now
TableKeyExistsWithDifferentTypeException.h
1 /*
2  * TableKeyExistsWithDifferentTypeException.h
3  *
4  * Created on: Sep 22, 2012
5  * Author: Mitchell Wills
6  */
7 
8 #ifndef TABLEKEYEXISTSWITHDIFFERENTTYPEEXCEPTION_H_
9 #define TABLEKEYEXISTSWITHDIFFERENTTYPEEXCEPTION_H_
10 
11 
13 
14 
15 #include <exception>
16 #include "networktables2/type/NetworkTableEntryType.h"
17 
18 
19 
20 
27 class TableKeyExistsWithDifferentTypeException : public std::exception {
28 public:
35  TableKeyExistsWithDifferentTypeException(const std::string existingKey, NetworkTableEntryType* existingType);
36 
37  TableKeyExistsWithDifferentTypeException(const std::string existingKey, NetworkTableEntryType* existingType, const char* message);
38 
39  const char* what(){return "TableKeyExistsWithDifferentTypeException";};
40 
41  virtual ~TableKeyExistsWithDifferentTypeException() throw ();
42 };
43 
44 
45 
46 #endif /* TABLEKEYEXISTSWITHDIFFERENTTYPEEXCEPTION_H_ */
TableKeyExistsWithDifferentTypeException(const std::string existingKey, NetworkTableEntryType *existingType)

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