ossp-pkg/ex/README 1.2 -> 1.3
--- README 2002/01/26 20:12:19 1.2
+++ README 2002/01/31 20:31:47 1.3
@@ -4,21 +4,22 @@
\___/_/\_\
OSSP ex - Exception Handling Library
- Version 0.1.0 (26-Jan-2002)
+ Version 0.9.0 (31-Jan-2002)
ABSTRACT
- The OSSP ex library is a small ISO-C++ style exception handling
- library for use in the ISO-C language. It allows you to use the
- paradigm of throwing and catching exceptions in order to reduce the
- amount of error handling code in without making your program less
- robust. This is achieved by directly transferring exceptional return
- codes (and the program control flow) from the location where it was
- raised (throw point) to the location where it is handled (catch point)
- - usually from a deeply nested sub-routine to a parent routine. All
- intermediate routines no longer have to make sure that the exceptional
- return codes from sub-routines are correctly passed back to the
- parent.
+ OSSP ex is a small ISO-C++ style exception handling library for use in
+ the ISO-C language. It allows you to use the paradigm of throwing and
+ catching exceptions in order to reduce the amount of error handling
+ code without making your program less robust.
+
+ This is achieved by directly transferring exceptional return codes
+ (and the program control flow) from the location where the exception
+ is raised (throw point) to the location where it is handled (catch
+ point) -- usually from a deeply nested sub-routine to a parent
+ routine. All intermediate routines no longer have to make sure that
+ the exceptional return codes from sub-routines are correctly passed
+ back to the parent.
COPYRIGHT AND LICENSE
|
|