Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-Exception-Base/examples/
Upload File :
Current File : //usr/share/doc/perl-Exception-Base/examples/die_propagate.pl

#!/usr/bin/perl

use lib 'lib', '../lib';

use strict;
use warnings;

use Exception::Base;

eval {
    eval { open my $file, "<", "/badmodeexample"
        or Exception::Base->throw( message=>"cannot open", verbosity=>4 ); };
    die;
};
die;