Thread or die: fehlerbehandlung ohne abbruch (7 answers)
Opened by Rambo at 2005-06-07 12:19

esskar
 2005-06-07 23:23
#55405 #55405
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
Code: (dl )
1
2
3
4
5
6
7
8
use PException;
try {
throw( AnException->new() ) if $something;
throw( AnOtherException->new( [] ) )
unless $anotherthing;
}
catch AnException( sub { } ) ,
onfly AnOtherException( sub { } );

View full thread or die: fehlerbehandlung ohne abbruch