File Coverage

blib/lib/Bio/GeneDesign/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             #
2             # GeneDesign exceptions
3             #
4              
5             =head1 NAME
6              
7             Bio::GeneDesign::Exceptions
8              
9             =head1 VERSION
10              
11             Version 5.52
12              
13             =head1 DESCRIPTION
14              
15             GeneDesign is a library for the computer-assisted design of synthetic genes
16              
17             =head1 AUTHOR
18              
19             Sarah Richardson <SMRichardson@lbl.gov>
20              
21             =cut
22              
23             package Bio::GeneDesign::Exceptions;
24              
25 1     1   5040 use strict;
  1         3  
  1         36  
26 1     1   5 use warnings;
  1         3  
  1         51  
27              
28             use Exception::Class
29             (
30            
31 1         12 "Bio::GeneDesign::Exception::UnBBable" =>
32             {
33             description => 'No building blocks could be carved from this chunk'
34             },
35            
36             "Bio::GeneDesign::Exception::UnOLable" =>
37             {
38             description => 'No oligos could be chopped from this building block'
39             },
40 1     1   806 );
  1         39861  
41              
42             1;