Jul 26, 2006 #1 WxJ Technical User Joined Jun 8, 2006 Messages 5 Location US How do you set up a try catch structure in perl? I need the catch to catch all errors and ideally print the type of error they were.
How do you set up a try catch structure in perl? I need the catch to catch all errors and ideally print the type of error they were.
Jul 26, 2006 #2 max1x Programmer Joined Jan 12, 2005 Messages 366 Location US eval { do something; }; print$@; Upvote 0 Downvote