Skip to content

Instantly share code, notes, and snippets.

@koorchik
Last active December 7, 2017 19:22
Show Gist options
  • Save koorchik/4702617 to your computer and use it in GitHub Desktop.
Save koorchik/4702617 to your computer and use it in GitHub Desktop.
use Try::Tiny;
sub load {
my $self = shift;
try {
return $self->SUPER::load(@_);
}
catch {
...
}
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment