From fbc8b54802ceaec680e0c86a7ac99dfd286848d8 Mon Sep 17 00:00:00 2001 From: "G. Richardson" Date: Fri, 25 Oct 2019 13:40:57 +0200 Subject: [PATCH] Typos in DB.pm POD --- SL/DB.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SL/DB.pm b/SL/DB.pm index 60681c7e6..d20846670 100644 --- a/SL/DB.pm +++ b/SL/DB.pm @@ -222,19 +222,19 @@ or you can use it to safely calulate things. =item Error handling -The original L gobbles up all execptions and expects -the caller to manually check return value and error, and then to process all -exceptions as strings. This is very fragile and generally a step backwards from -proper exception handling. +The original L gobbles up all exceptions and expects +the caller to manually check the return value and error, and then to process +all exceptions as strings. This is very fragile and generally a step backwards +from proper exception handling. -C only gobbles up exception that are used to signal an +C only gobbles up exceptions that are used to signal an error in the transaction, and returns undef on those. All other exceptions bubble out of the transaction like normal, so that it is transparent to typoes, runtime exceptions and other generally wanted things. If you just use the snippet above, your code will catch everything related to the transaction aborting, but will not catch other errors that might have been -thrown. The transaction will be rollbacked in both cases. +thrown. The transaction will be rolled back in both cases. If you want to play nice in case your transaction is embedded in another transaction, just rethrow the error: -- 2.20.1