From 3f62de5440a3a16b5bf05734e93c0025a1654ec7 Mon Sep 17 00:00:00 2001 From: Greg Williams Date: Sat, 26 Jul 2014 16:05:03 -0400 Subject: [PATCH] README cleanup --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index c4d2dea..204a80c 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,6 @@ CException API * `Throw(e)` * `Throw` is the method used to throw an error. `Throw`s should only occur from within a protected (`Try`...`Catch`) block, though it may easily be nested many function calls deep without an impact on performance or functionality. `Throw` takes a single argument, which is an exception id which will be passed to `Catch` as the reason for the error. If you wish to _re-throw_ an error, this can be done by calling `Throw(e)` with the error code you just caught. It _IS_ valid to throw from a `Catch` block. - Configuration ============= @@ -124,7 +123,6 @@ You have options for configuring the library, if the defaults aren't good enough You may also want to include any header files which will commonly be needed by the rest of your application where it uses exception handling here. For example, OS header files or exception codes would be useful. - Testing =======