Help for this page

Select Code to Download


  1. or download this
      try {
        die_sometimes();
      } catch {
    ...
          print "The try block ran without error.\n";
        }
      };
    
  2. or download this
     use TryCatch;
    
     sub foo {
    ...
       catch (Some::Class $e where { $_->code > 100 } ) {
       }
     }