Help for this page

Select Code to Download


  1. or download this
    catch Error::IO ...
    
  2. or download this
    Error::IO->catch(...)
    
  3. or download this
    try {
       ...
    ...
    catch Error::IO with {
       ...
    };
    
  4. or download this
    try(sub { ... }, Error::IO->catch(with(sub { ... })));
    
  5. or download this
    sub stuff { ... }
    
    sub err_handler { ... }
    
    try \&stuff, catch Error::IO with \&err_handler;