Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Style guide for error messages?

by jplindstrom (Monsignor)
on Sep 22, 2005 at 11:17 UTC ( [id://494080]=note: print w/replies, xml ) Need Help??


in reply to Style guide for error messages?

In addition to your stuff:
  • Always provide necessary variables that may be interesting in the context of the error.
    die("Could not open file $file: $!\n");
  • Always put delimiters around the variables, so that you don't get tricked by whitespace, weird chars, line feeds, etc.
    die("Could not open file ($file): ($!)\n");

/J

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://494080]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-19 03:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found