Lines Matching defs:croak
12 croak - die of errors (from perspective of caller)
16 shortmess - return the message that carp and croak produce
23 croak "We're outta here!";
38 croak or shortmess which report the error as being from where
79 reporting the error where you call carp/croak/shortmess.)
85 As a debugging aid, you can force Carp to treat a croak as a confess
117 # croak. They replace $CarpLevel, which is deprecated. The
134 @EXPORT = qw(confess croak carp);
171 # shortmess() is called by carp() and croak() to skip all the way up to
188 # or simply report the caller's package (croak() and carp()), respectively.
189 # confess() and croak() die, carp() and cluck() warn.
191 sub croak { die shortmess @_ }