line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Method::ParamValidator::Exception; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
$Method::ParamValidator::Exception::VERSION = '0.15'; |
4
|
|
|
|
|
|
|
$Method::ParamValidator::Exception::AUTHORITY = 'cpan:MANWAR'; |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
Method::ParamValidator::Exception - Handles 'exception' for Method::ParamValidator. |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 VERSION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Version 0.15 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=cut |
15
|
|
|
|
|
|
|
|
16
|
6
|
|
|
6
|
|
57973
|
use 5.006; |
|
6
|
|
|
|
|
29
|
|
17
|
6
|
|
|
6
|
|
50
|
use Data::Dumper; |
|
6
|
|
|
|
|
13
|
|
|
6
|
|
|
|
|
370
|
|
18
|
|
|
|
|
|
|
|
19
|
6
|
|
|
6
|
|
36
|
use Moo::Role; |
|
6
|
|
|
|
|
15
|
|
|
6
|
|
|
|
|
36
|
|
20
|
6
|
|
|
6
|
|
2521
|
use namespace::autoclean; |
|
6
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
57
|
|
21
|
|
|
|
|
|
|
requires qw(status reason); |
22
|
|
|
|
|
|
|
with 'Throwable'; |
23
|
|
|
|
|
|
|
|
24
|
6
|
|
|
6
|
|
698
|
use overload q{""} => 'as_string', fallback => 1; |
|
6
|
|
|
|
|
15
|
|
|
6
|
|
|
|
|
45
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
has [ qw(method filename line) ] => (is => 'ro', required => 1); |
27
|
|
|
|
|
|
|
has field => (is => 'ro', default => sub { '' }); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
sub as_string { |
30
|
19
|
|
|
19
|
0
|
748
|
my ($self) = @_; |
31
|
|
|
|
|
|
|
|
32
|
19
|
|
|
|
|
244
|
return sprintf("%s(): %s %s (status: %s) file %s on line %d\n", |
33
|
|
|
|
|
|
|
$self->method, $self->reason, $self->field, $self->status, $self->filename, $self->line); |
34
|
|
|
|
|
|
|
} |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 DESCRIPTION |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
B |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 AUTHOR |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Mohammad S Anwar, C<< >> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 REPOSITORY |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
L |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 BUGS |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Please report any bugs or feature requests to C, |
51
|
|
|
|
|
|
|
or through the web interface at L. |
52
|
|
|
|
|
|
|
I will be notified and then you'll automatically be notified of progress on your |
53
|
|
|
|
|
|
|
bug as I make changes. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 SUPPORT |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
perldoc Method::ParamValidator::Exception |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
You can also look for information at: |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=over 4 |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker (report bugs here) |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
L |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
L |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=item * CPAN Ratings |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
L |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=item * Search CPAN |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
L |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=back |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
Copyright (C) 2015 Mohammad S Anwar. |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
This program is free software; you can redistribute it and / or modify it under |
88
|
|
|
|
|
|
|
the terms of the the Artistic License (2.0). You may obtain a copy of the full |
89
|
|
|
|
|
|
|
license at: |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
L |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
Any use, modification, and distribution of the Standard or Modified Versions is |
94
|
|
|
|
|
|
|
governed by this Artistic License.By using, modifying or distributing the Package, |
95
|
|
|
|
|
|
|
you accept this license. Do not use, modify, or distribute the Package, if you do |
96
|
|
|
|
|
|
|
not accept this license. |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
If your Modified Version has been derived from a Modified Version made by someone |
99
|
|
|
|
|
|
|
other than you,you are nevertheless required to ensure that your Modified Version |
100
|
|
|
|
|
|
|
complies with the requirements of this license. |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
This license does not grant you the right to use any trademark, service mark, |
103
|
|
|
|
|
|
|
tradename, or logo of the Copyright Holder. |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
This license includes the non-exclusive, worldwide, free-of-charge patent license |
106
|
|
|
|
|
|
|
to make, have made, use, offer to sell, sell, import and otherwise transfer the |
107
|
|
|
|
|
|
|
Package with respect to any patent claims licensable by the Copyright Holder that |
108
|
|
|
|
|
|
|
are necessarily infringed by the Package. If you institute patent litigation |
109
|
|
|
|
|
|
|
(including a cross-claim or counterclaim) against any party alleging that the |
110
|
|
|
|
|
|
|
Package constitutes direct or contributory patent infringement,then this Artistic |
111
|
|
|
|
|
|
|
License to you shall terminate on the date that such litigation is filed. |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND |
114
|
|
|
|
|
|
|
CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED |
115
|
|
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR |
116
|
|
|
|
|
|
|
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS |
117
|
|
|
|
|
|
|
REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, |
118
|
|
|
|
|
|
|
INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE |
119
|
|
|
|
|
|
|
OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
=cut |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
1; # End of Method::ParamValidator::Exception |