Files
allwpilib/networktables/cpp/lib/share/networktables2/util/IllegalStateException.cpp

17 lines
301 B
C++
Raw Normal View History

/*
* IllegalStateException.cpp
*
* Created on: Sep 16, 2012
* Author: Mitchell Wills
*/
#include "networktables2/util/IllegalStateException.h"
IllegalStateException::IllegalStateException(const char* msg)
: message(msg)
{
}
IllegalStateException::~IllegalStateException() throw ()
{
}