File Coverage

blib/lib/Map/Metro/Exception/LineIdDoesNotExistInLineList.pm
Criterion Covered Total %
statement 69 69 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 76 76 100.0


line stmt bran cond sub pod time code
1 1     1   6 use Map::Metro::Standard::Moops;
  1         1  
  1         11  
2 1     1   2381 use strict;
  1         2  
  1         26  
3 1     1   6 use warnings;
  1         2  
  1         59  
4              
5             our $VERSION = '0.2300'; # VERSION
6             # ABSTRACT: LineIdDoesNotExistInLineList
7             # PODNAME: Map::Metro::Exception::LineIdDoesNotExistInLineList
8              
9 1     1   2155 class Map::Metro::Exception::LineIdDoesNotExistInLineList with Map::Metro::Exception {
  1     1   34  
  1     1   7  
  1         2  
  1         68  
  1         5  
  1         1  
  1         9  
  1         284  
  1         2  
  1         8  
  1         61  
  1         2  
  1         53  
  1         6  
  1         2  
  1         105  
  1         36  
  1         5  
  1         1  
  1         10  
  1         4236  
  1         3  
  1         9  
  1         7044  
  1         3  
  1         9  
  1         4511  
  1         3  
  1         12  
  1         78  
  1         2  
  1         16  
  1         227  
  1         2  
  1         9  
  1         1286  
  1         2  
  1         10  
  1         6086  
  1         3  
  1         5  
  1         3  
  1         28  
  1         6  
  1         2  
  1         52  
  1         6  
  1         1  
  1         157  
  1         9  
  1         5578  
  1         20  
  1         5062  
  1         24548  
10              
11 1     1   14962 use Map::Metro::Exception -all;
  1         5  
  1         8  
12              
13 1         53 has line_id => (
14             is => 'ro',
15             isa => Str,
16             traits => [Payload],
17             );
18 1         10745 has info => (
19             is => 'ro',
20             isa => Str,
21             lazy => 1,
22             default => q{Line id [%{line_id}s] does not exist in line list (check segments)},
23             );
24              
25             }
26              
27             1;
28              
29             __END__
30              
31             =pod
32              
33             =encoding UTF-8
34              
35             =head1 NAME
36              
37             Map::Metro::Exception::LineIdDoesNotExistInLineList - LineIdDoesNotExistInLineList
38              
39             =head1 VERSION
40              
41             Version 0.2300, released 2016-01-14.
42              
43             =head1 SOURCE
44              
45             L<https://github.com/Csson/p5-Map-Metro>
46              
47             =head1 HOMEPAGE
48              
49             L<https://metacpan.org/release/Map-Metro>
50              
51             =head1 AUTHOR
52              
53             Erik Carlsson <info@code301.com>
54              
55             =head1 COPYRIGHT AND LICENSE
56              
57             This software is copyright (c) 2016 by Erik Carlsson.
58              
59             This is free software; you can redistribute it and/or modify it under
60             the same terms as the Perl 5 programming language system itself.
61              
62             =cut