OSError extends Error by using errno or GetLastError() to build the text description of the error.
#include <Error.h>
Public Member Functions | |
OSError (const char *file, const char *func, int line) throw () | |
Construct an OS error exception. |
Definition at line 102 of file Error.h.
OSError::OSError | ( | const char * | file, | |
const char * | func, | |||
int | line | |||
) | throw () |
This constructor looks at errno or GetLastError() to build the text description.
file | the file name where the error occurred | |
func | the function name where the error occurred | |
line | the line number where the error occurred |
LizardTech |