Guest User

Untitled

a guest
Jun 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. package SimpleExample;
  2.  
  3. use strict;
  4. use warnings;
  5.  
  6. use base 'Exporter';
  7. our @EXPORT = qw( try_marp );
  8.  
  9. use Exception::Class::OnCaller 'ex';
  10.  
  11. sub try_marp {
  12. die ex "simple error with no bells or whistles";
  13. }
  14.  
  15. 1;
Add Comment
Please, Sign In to add comment