mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
17 lines
301 B
C++
17 lines
301 B
C++
|
|
/*
|
||
|
|
* 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 ()
|
||
|
|
{
|
||
|
|
}
|