| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Iterator::Flex::Failure; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: Failure classes for Iterator::Flex |
|
4
|
|
|
|
|
|
|
|
|
5
|
25
|
|
|
25
|
|
170831
|
use v5.28; |
|
|
25
|
|
|
|
|
96
|
|
|
6
|
25
|
|
|
25
|
|
118
|
use strict; |
|
|
25
|
|
|
|
|
34
|
|
|
|
25
|
|
|
|
|
632
|
|
|
7
|
25
|
|
|
25
|
|
78
|
use warnings; |
|
|
25
|
|
|
|
|
32
|
|
|
|
25
|
|
|
|
|
1581
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = '0.34'; |
|
10
|
|
|
|
|
|
|
|
|
11
|
25
|
|
|
25
|
|
8965
|
use custom::failures qw/Exhausted Truncated Error RoleExists Unsupported/; |
|
|
25
|
|
|
|
|
96388
|
|
|
|
25
|
|
|
|
|
175
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
25
|
|
|
25
|
|
5676
|
use custom::failures qw/ class parameter internal input /; |
|
|
25
|
|
|
|
|
38
|
|
|
|
25
|
|
|
|
|
71
|
|
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
# |
|
18
|
|
|
|
|
|
|
# This file is part of Iterator-Flex |
|
19
|
|
|
|
|
|
|
# |
|
20
|
|
|
|
|
|
|
# This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory. |
|
21
|
|
|
|
|
|
|
# |
|
22
|
|
|
|
|
|
|
# This is free software, licensed under: |
|
23
|
|
|
|
|
|
|
# |
|
24
|
|
|
|
|
|
|
# The GNU General Public License, Version 3, June 2007 |
|
25
|
|
|
|
|
|
|
# |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
__END__ |