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.11.0'; |
4
|
|
|
|
|
|
|
|
5
|
39
|
|
|
39
|
|
235
|
use strict; use warnings; |
|
39
|
|
|
39
|
|
90
|
|
|
39
|
|
|
|
|
981
|
|
|
39
|
|
|
|
|
165
|
|
|
39
|
|
|
|
|
55
|
|
|
39
|
|
|
|
|
1469
|
|
6
|
|
|
|
|
|
|
use Exception::Class ( |
7
|
39
|
|
|
|
|
435
|
'Bio::Roary::Exceptions::FileNotFound' => { description => 'Couldnt open the file' }, |
8
|
|
|
|
|
|
|
'Bio::Roary::Exceptions::CouldntWriteToFile' => { description => 'Couldnt open the file for writing' }, |
9
|
39
|
|
|
39
|
|
251
|
); |
|
39
|
|
|
|
|
59
|
|
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.11.0 |
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 |