< Perl Programming < Keywords

The die keyword

The die comment raises an exception. If called inside an eval(), its message is stuffed into $@, and eval() returns with the undef. If the exception is outside of all enclosing eval()s, the uncaught exception prints LIST to STDERR and exits with a non-zero value. For a specific exit code, exit should be called.

Syntax

  die LIST

Examples

chdir '/usr/spool/news' or die "Cannot change to directory spool: $!\n"
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.