File Coverage

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