/usr/share/perl5/Carton/Error.pm is in carton 1.0.12-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 | package Carton::Error;
use strict;
use Exception::Class (
'Carton::Error',
'Carton::Error::CommandNotFound' => { isa => 'Carton::Error' },
'Carton::Error::CommandExit' => { isa => 'Carton::Error', fields => [ 'code' ] },
'Carton::Error::CPANfileNotFound' => { isa => 'Carton::Error' },
'Carton::Error::SnapshotParseError' => { isa => 'Carton::Error', fields => [ 'path' ] },
'Carton::Error::SnapshotNotFound' => { isa => 'Carton::Error', fields => [ 'path' ] },
);
1;
|