Help for this page

Select Code to Download


  1. or download this
    # be nice to callers - don't wipe out $@ for them
    local $@;
    ...
    } or do {
      #handle errors here
    }
    
  2. or download this
    local $@;
    eval {
    ...
        die Exception::Unknown->new();
      }
    }