mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
15 lines
281 B
C++
15 lines
281 B
C++
|
|
/*
|
||
|
|
* EOFException.cpp
|
||
|
|
*
|
||
|
|
* Created on: Oct 1, 2012
|
||
|
|
* Author: Mitchell Wills
|
||
|
|
*/
|
||
|
|
#include "networktables2/util/EOFException.h"
|
||
|
|
|
||
|
|
EOFException::EOFException() : IOException("End of File"){}
|
||
|
|
EOFException::~EOFException() throw(){}
|
||
|
|
|
||
|
|
bool EOFException::isEOF(){
|
||
|
|
return true;
|
||
|
|
}
|