12345678
use PException; try { throw( AnException->new() ) if $something; throw( AnOtherException->new( [] ) ) unless $anotherthing; } catch AnException( sub { } ) , onfly AnOtherException( sub { } );