Subject: | accept qr/.../ as a key |
This would be handy for Try::Tiny::ByClass so that you can accept a mixture of blessed and stringy exceptions...
catch_case [
'Exception::FileNotFound' => sub { ... },
qr/my head asploded/ => sub { ... },
]