Mercurial > repos > dereeper > roary_plots
view Roary/lib/Bio/Roary/Exceptions.pm @ 0:c47a5f61bc9f draft
Uploaded
author | dereeper |
---|---|
date | Fri, 14 May 2021 20:27:06 +0000 |
parents | |
children |
line wrap: on
line source
package Bio::Roary::Exceptions; # ABSTRACT: Exceptions for input data =head1 SYNOPSIS Exceptions for input data =cut use strict; use warnings; use Exception::Class ( 'Bio::Roary::Exceptions::FileNotFound' => { description => 'Couldnt open the file' }, 'Bio::Roary::Exceptions::CouldntWriteToFile' => { description => 'Couldnt open the file for writing' }, ); 1;