in reply to Re^2: instantiating an smtp object
in thread instantiating an smtp object
clobbered
Carp Carp takes care not to clobber the status variables $! and $^E in the course of assembling its error messages. This means that a $SIG{__DIE__} or $SIG{__WARN__} handler can capture the error information held in those variables, if it is required to augment the error message, and if the code calling Carp left useful values there. Of course, Carp can't guarantee the latter.
$@
Interpolate. $@ is set if the string to be eval-ed did not compile (this may happen if open or close were imported with bad prototypes), or if Perl code executed during evaluation die()d. In these cases the value of $@ is the compile error, or the argument to die (which will interpolate $! and $? ). (See also Fatal, though.)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: instantiating an smtp object
by haukex (Archbishop) on Jun 06, 2016 at 11:50 UTC | |
by $h4X4_|=73}{ (Monk) on Jun 06, 2016 at 14:27 UTC | |
by haukex (Archbishop) on Jun 06, 2016 at 15:03 UTC | |
by $h4X4_|=73}{ (Monk) on Jun 07, 2016 at 08:22 UTC |