WPILibC++  trunk
IllegalStateException.cpp
1 /*
2  * IllegalStateException.cpp
3  *
4  * Created on: Sep 16, 2012
5  * Author: Mitchell Wills
6  */
7 
8 #include "networktables2/util/IllegalStateException.h"
9 
10 IllegalStateException::IllegalStateException(const char* msg)
11  : message(msg)
12 {
13 }
14 IllegalStateException::~IllegalStateException() throw ()
15 {
16 }