This file is indexed.

/usr/share/perl5/Bio/Tradis/Exception.pm is in bio-tradis 1.3.3+dfsg-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
package Bio::Tradis::Exception;
# ABSTRACT: Exceptions for input data 

=head1 SYNOPSIS

Exceptions for input data 

=cut


use Exception::Class (
    Bio::Tradis::Exception::RefNotFound    => { description => 'Cannot find the reference file' },
    Bio::Tradis::Exception::TagFilterError => { description => 'Problem filtering the Fastq by tag' }
);  

1;