in reply to Re: Tracking down "uninitialized value" errs
in thread Tracking down "uninitialized value" errs

Could you elaborate on your suggestion? From reading the documentation of the Error module, and the article you pointed to, it isn't clear to me at all how the Error module could help in catching warnings from already written code.

From what I understood is that the Error module provides you a frame work to set up your own exception handling mechanism, where you can throw exceptions and catch them. Which is something completely different from what the OP wants to do.

Abigail

  • Comment on Re: Tracking down "uninitialized value" errs

Replies are listed 'Best First'.
Re: Re: Tracking down "uninitialized value" errs
by nite_man (Deacon) on Jul 30, 2003 at 11:23 UTC

    Generally, you are right, but, in my mind, this problem was because there were not defined some values in the programm. So, using catch of exeptions can help to know, where undefined data were used and corrected them.

    _ _ _ _ _ _
      M i c h a e l

      How so? Use of an uninitialized value in Perl is not an exception. Perl will issue a warning, and then continue.

      Abigail

        Ok, your are right, I haven't understood clearly of core of problem ...

        _ _ _ _ _ _
          M i c h a e l