A collection of three classes which display a custom error message or display the built-in CRT or Win32 API error message: CBasicError - For custom errors, CLibraryError - For C run time library errors, and CWin32APIError - For Win32 API errors
::::: CError :::::
Eugene Ciloci
Mar 7, 2002
::::: Description :::::
A collection of one base class and two derived classes which hold error messages.
Hierarchy:
CError - Handles custom errors
|
|
+---- CLibraryError - Handles C run time library errors
|
|
+---- CWinAPIError - Handles Win32 API errors
::::: Legal Stuff :::::
Feel free to distribute this as you wish but please credit me if you use this in your program.
Have Fun!
File List:
@PSC_ReadMe_2515_3.txt
1Kb
CError.cpp
5Kb
CError.h
1Kb
CharsetConversion.cpp
2Kb
CharsetConversion.h
1Kb
Readme.txt
1Kb
Test.cpp
1Kb
Similar code
xception
(Popularity: ) : Simulates exception-handling in turbo c++ (or any other c++ compilers not currently supporting exception-handling). This code allows throwing of null-terminated strings only but should be sufficient for many purposes. Easy debugging ouput
(Popularity: ) : Gives easy access to a default debugging output. Lets you print out values of type int, string, and char[] as well as discriptive strings.