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

15 lines
281 B
C++
Raw Normal View History

/*
* 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;
}