File Coverage

lib/Bio/Roary/Exceptions.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Bio::Roary::Exceptions;
2             # ABSTRACT: Exceptions for input data
3             $Bio::Roary::Exceptions::VERSION = '3.10.1';
4              
5 39     39   281 use strict; use warnings;
  39     39   102  
  39         1169  
  39         217  
  39         93  
  39         1644  
6             use Exception::Class (
7 39         443 'Bio::Roary::Exceptions::FileNotFound' => { description => 'Couldnt open the file' },
8             'Bio::Roary::Exceptions::CouldntWriteToFile' => { description => 'Couldnt open the file for writing' },
9 39     39   218 );
  39         84  
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             Bio::Roary::Exceptions - Exceptions for input data
22              
23             =head1 VERSION
24              
25             version 3.10.1
26              
27             =head1 SYNOPSIS
28              
29             Exceptions for input data
30              
31             =head1 AUTHOR
32              
33             Andrew J. Page <ap13@sanger.ac.uk>
34              
35             =head1 COPYRIGHT AND LICENSE
36              
37             This software is Copyright (c) 2013 by Wellcome Trust Sanger Institute.
38              
39             This is free software, licensed under:
40              
41             The GNU General Public License, Version 3, June 2007
42              
43             =cut