Advanced Perl Programming

Advanced Perl ProgrammingSearch this book
Previous: B.6 Dynamic BehaviorAppendix B
Syntax Summary
Next: B.8 Meta-Information
 

B.7 Exception Handling

  1. die throws an exception, and eval traps it. Error string is found in $@. The following code has the possibility of two run-time errors:

    eval {                         
       $c = $a / $b;                                       #1
       die "Denominator cannot be negative" if ($b < 0);   #2
    };
    print "Run-time error: $@";

    $@ can be "Illegal division by zero" at (1) or "Denominator cannot be negative" at (2).


Previous: B.6 Dynamic BehaviorAdvanced Perl ProgrammingNext: B.8 Meta-Information
B.6 Dynamic BehaviorBook IndexB.8 Meta-Information

Library Navigation Links

Copyright © 2001 O'Reilly & Associates. All rights reserved.