cvsuser 02/02/23 19:41:15
Modified: P5EEx/Blue/P5EEx/Blue exceptions.pod
Log:
clarified the eval syntax to catch exceptions (again)
Revision Changes Path
1.5 +1 -1 p5ee/P5EEx/Blue/P5EEx/Blue/exceptions.pod
Index: exceptions.pod
===================================================================
RCS file: /cvs/public/p5ee/P5EEx/Blue/P5EEx/Blue/exceptions.pod,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -w -r1.4 -r1.5
--- exceptions.pod 24 Feb 2002 03:40:02 -0000 1.4
+++ exceptions.pod 24 Feb 2002 03:41:15 -0000 1.5
@@ -272,7 +272,7 @@
eval {
&do_big_function();
- }
+ };
if ($@) {
# handle the exception ($@ is the exception message)
}