File Coverage

blib/lib/Map/Tube/Exception/MalformedMapData.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


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