DOKK / manpages / debian 10 / libcatmandu-perl / Catmandu::Error.3pm.en
Catmandu::Error(3pm) User Contributed Perl Documentation Catmandu::Error(3pm)

Catmandu::Error - Catmandu error hierarchy

    use Catmandu::Sane;
    sub be_naughty {
        Catmandu::BadArg->throw("very naughty") if shift;
    }
    try {
        be_naughty(1);
    } catch_case [
        'Catmandu::BadArg' => sub {
            say "sorry";
        }
    ];

Throwable

2019-01-29 perl v5.28.1