Possible Duplicate:
What does the special variable $@ mean in Perl?
Possible duplicate: http://stackoverflow.com/questions/1208213/what-does-the-special-variable-mean-in-perl
I saw the following in a perl code snippet :
if($@)
{
... #Some code here
}
What is the meaning of $@ ?
