mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
24 lines
466 B
C
24 lines
466 B
C
|
|
/*
|
||
|
|
* IllegalStateException.h
|
||
|
|
*
|
||
|
|
* Created on: Sep 16, 2012
|
||
|
|
* Author: Mitchell Wills
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef ILLEGALSTATEEXCEPTION_H_
|
||
|
|
#define ILLEGALSTATEEXCEPTION_H_
|
||
|
|
|
||
|
|
#include <exception>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
class IllegalStateException : public std::exception{
|
||
|
|
public:
|
||
|
|
IllegalStateException(const char* message);
|
||
|
|
const char* what(){return message.c_str();};
|
||
|
|
~IllegalStateException() throw ();
|
||
|
|
private:
|
||
|
|
std::string message;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif /* ILLEGALSTATEEXCEPTION_H_ */
|