1Trace::Mask::TryTiny(3)User Contributed Perl DocumentatioTnrace::Mask::TryTiny(3)
2
3
4
6 Trace::Mask::Try::Tiny - Trace::Mask tools for masking Try::Tiny in
7 traces
8
10 This module can be used to apply Trace::Mask behavior to Try::Tiny so
11 that it is hidden in Trace::Mask compliant stack traces.
12
14 use Trace::Mask::TryTiny;
15 use Trace::Mask::Carp qw/cluck/;
16
17 try {
18 cluck "Try::Tiny is not in this trace";
19 die "ignore me";
20 }
21 catch {
22 cluck "Try::Tiny is not in this trace";
23 }
24 finally {
25 cluck "Try::Tiny is not in this trace";
26 };
27
29 There is no configuration, and no import options. This module is very
30 simple, it adds the correct entries to %Trace::Mask::MASKS. It runs
31 "Try::Tiny" and uses caller to determine how many fames should be
32 hidden in each call dynamically.
33
35 The source code repository for Trace-Mask can be found at
36 http://github.com/exodist/Trace-Mask.
37
39 Chad Granum <exodist@cpan.org>
40
42 Chad Granum <exodist@cpan.org>
43
45 Copyright 2015 Chad Granum <exodist7@gmail.com>.
46
47 This program is free software; you can redistribute it and/or modify it
48 under the same terms as Perl itself.
49
50 See http://www.perl.com/perl/misc/Artistic.html
51
52
53
54perl v5.36.0 2023-01-20 Trace::Mask::TryTiny(3)