>Currently many programs handle error returns by examining the text of
>the error returned in $@. This makes changes in the text of the error
>message, an issue for the backwards compatibility police.

    eval {  fn() };

    if ($@ == EYOURWHATHURTS) { .... } 

    sub fn { die "blindlesnot" }


--tom

Reply via email to