/usr/share/perl5/TheSchwartz/Error.pm is in libtheschwartz-perl 1.07-1.
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 | # $Id: Error.pm 101 2006-08-23 21:22:49Z bradfitz $
package TheSchwartz::Error;
use strict;
use base qw( Data::ObjectDriver::BaseObject );
__PACKAGE__->install_properties({
columns => [ qw( jobid funcid message error_time ) ],
datasource => 'error',
});
1;
|