WPILibC++
trunk
|
#include <IOException.h>
Public Member Functions | |
IOException (const char *message) | |
IOException (const char *message, int errorValue) | |
const char * | what () |
virtual bool | isEOF () |
Inidcates that an unrecoverable I/O failure occured.
Definition at line 16 of file IOException.h.
IOException::IOException | ( | const char * | message | ) |
Creates a new IOException with the given message.
message | The message to associate with this exception. |
Definition at line 13 of file IOException.cpp.
IOException::IOException | ( | const char * | message, |
int | errorValue | ||
) |
Creates a new IOException with the given message and error value.
message | The message to associate with this exception. |
errorValue | The integer code to associate with this exception. |
Definition at line 14 of file IOException.cpp.
|
virtual |
Determines whether this exception indicates that an EOF was encountered.
Reimplemented in EOFException.
Definition at line 20 of file IOException.cpp.
const char * IOException::what | ( | ) |
Gets the message associated with this exception.
Definition at line 16 of file IOException.cpp.