Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How would you trap error occurred in the perl program/file?

Answer Posted / shah faisal

#Ist trapping the error in a block
eval {
# perl code goes here
};

if ($@) { # $@ is a special variable containing the error
if any else blank
print "Print your own error If u want";
}

# 2nd
# use if or unless for a loop ;ike below
if(chk some condition)
{
die"$!\n"; # if the condition success
}
system generated error is printed and the scirpt is exited
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?

1039


What is subroutine in perl?

992


Can inheritance be used in perl?

1042


Which functions in perl allows you to include a module file. State their differences.

1013


How can information be put into hashes?

1029


What is perl unshift array function?

1116


What are the logical operators used for small scale operations? Explain them briefly.

1037


How to determine strings length in perl?

1020


what is Chop & Chomp function does?

1040


Write a script to reverse a string without using perl's built in functions?

1043


What does read () command do?

980


If EXPR is an arbitrary expression, what is the difference between $Foo::{EXPR} and *{"Foo::".EXPR}?

1088


Write an example explaining the use of symbol tables.

1001


What is it meants by '$_'?

949


Which functions in perl allows you to include a module file.

1105