Thread Fehlerbehandlung mit try und catch (2 answers)
Opened by andi25 at 2011-04-01 15:33

dgw
 2011-04-01 15:41
#147278 #147278
User since
2010-08-16
27 Artikel
BenutzerIn

user image
Hallo,

try/eval ist kein Perl.
Schau doch mal hier Wiki:PerlTutorialKapitel10#eval.

Kurzform:
Code (perl): (dl )
1
2
3
4
5
6
# try
eval { code_der_fehlerhaft_sein_kann() ; } ;
# catch
if( $? ) {
  printf "Fehler: %s\n" , $? ;
}


Just my 2 cents.
Daniel

View full thread Fehlerbehandlung mit try und catch