File Coverage

blib/lib/PDL/Algorithm/Center/Failure.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 PDL::Algorithm::Center::Failure;
2              
3             # ABSTRACT: Exception classes for PDL::Algorithm::Center
4              
5 3     3   278753 use v5.10;
  3         12  
6 3     3   19 use strict;
  3         6  
  3         82  
7 3     3   19 use warnings;
  3         6  
  3         330  
8              
9             our $VERSION = '0.15';
10              
11 3         27 use custom::failures::x::alias -suffix => '_failure', qw[
12             parameter
13             iteration::limit_reached
14             iteration::empty
15 3     3   1926 ];
  3         3626  
16              
17             #
18             # This file is part of PDL-Algorithm-Center
19             #
20             # This software is Copyright (c) 2017 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             1;
28              
29             __END__