This is the latest WPILib src, VisionSample2013, cRIO image, ... pulled down from firstforge.wpi.edu.
There might be risks in using the top of tree rather than an official release, but the commit messages do mention fixes for some deadlocks and race conditions.
git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@4066 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/azaleasource/WPILibCProgramming/trunk/WPILib/tables/TableKeyNotDefinedException.cpp b/azaleasource/WPILibCProgramming/trunk/WPILib/tables/TableKeyNotDefinedException.cpp
new file mode 100644
index 0000000..46ae88f
--- /dev/null
+++ b/azaleasource/WPILibCProgramming/trunk/WPILib/tables/TableKeyNotDefinedException.cpp
@@ -0,0 +1,24 @@
+/*
+ * TableKeyNotDefinedException.cpp
+ *
+ * Created on: Sep 22, 2012
+ * Author: Mitchell Wills
+ */
+
+#include "tables/TableKeyNotDefinedException.h"
+#include <stdlib.h>
+#include <cstring>
+
+
+#define MESSAGE_PREFIX "Unkown Table Key: "
+TableKeyNotDefinedException::TableKeyNotDefinedException(const std::string key):
+msg(MESSAGE_PREFIX + key){
+
+}
+
+const char* TableKeyNotDefinedException::what(){
+ return msg.c_str();
+}
+
+TableKeyNotDefinedException::~TableKeyNotDefinedException() throw(){
+}