It's a built-in error message. Read perldoc perlvars and read the section on Error Variables. Its says:
 $EXTENDED_OS_ERROR
       $^E     Error information specific to the current operating system. At the moment, this differs from $! under only VMS, OS/2, and
               Win32 (and for MacPerl). On all other platforms, $^E is always just the same as $!.

               Under VMS, $^E provides the VMS status value from the last system error. This is more specific information about the last
               system error than that provided by $!. This is particularly important when $!  is set to EVMSERR.

               Under OS/2, $^E is set to the error code of the last call to OS/2 API either via CRT, or directly from perl.

               Under Win32, $^E always returns the last error information reported by the Win32 call "GetLastError()" which describes the
               last error from within the Win32 API. Most Win32-specific code will report errors via $^E. ANSI C and Unix-like calls set
               "errno" and so most portable Perl code will report errors via $!.

               Caveats mentioned in the description of $! generally apply to $^E, also.

               This variable was added in Perl 5.003.

               Mnemonic: Extra error explanation.


I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

In reply to Re^5: how can I detach a thread from another or how can I set a timer for a thread? by zentara
in thread how can I detach a thread from another or how can I set a timer for a thread? by boeingdream

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.