Now you can download a copy of these docs so you can use them offline! Download now
IOException.h
1 /*
2  * IOException.h
3  *
4  * Created on: Oct 1, 2012
5  * Author: Mitchell Wills
6  */
7 
8 #ifndef IOEXCEPTION_H_
9 #define IOEXCEPTION_H_
10 
11 #include <exception>
12 
16 class IOException : public std::exception{
17 public:
23  IOException(const char* message);
24 
32  IOException(const char* message, int errorValue);
33 
39  const char* what();
40 
48  virtual bool isEOF();
49  virtual ~IOException() throw ();
50 private:
51  const char* message;
52  int errorValue;
53 };
54 
55 
56 #endif /* IOEXCEPTION_H_ */
const char * what()
Definition: IOException.cpp:16
IOException(const char *message)
Definition: IOException.cpp:13
virtual bool isEOF()
Definition: IOException.cpp:20

Generated on Sat Apr 26 2014 12:26:45 for WPILibC++ by doxygen 1.8.6