Skip to content

Instantly share code, notes, and snippets.

@peterzawistowicz
Created September 24, 2015 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterzawistowicz/caa4c22e9d48e59befac to your computer and use it in GitHub Desktop.
Save peterzawistowicz/caa4c22e9d48e59befac to your computer and use it in GitHub Desktop.
# RIGHT WAY
my $client = MongoDB->connect();
eval {
# do work
};
if ( $@ ) {
die "Error doing work: $@";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment