/usr/share/perl5/Catalyst/Exception/Interface.pm is in libcatalyst-perl 5.90015-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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | package Catalyst::Exception::Interface;
use MooseX::Role::WithOverloading;
use namespace::clean -except => 'meta';
use overload
q{""} => sub { $_[0]->as_string },
fallback => 1;
requires qw/as_string throw rethrow/;
1;
__END__
=head1 NAME
Catalyst::Exception::Interface - Role defining the interface for Catalyst exceptions
=head1 SYNOPSIS
package My::Catalyst::Like::Exception;
use Moose;
use namespace::clean -except => 'meta';
with 'Catalyst::Exception::Interface';
# This comprises the required interface.
sub as_string { 'the exception text for stringification' }
sub throw { shift; die @_ }
sub rethrow { shift; die @_ }
=head1 DESCRIPTION
This is a role for the required interface for Catalyst exceptions.
It ensures that all exceptions follow the expected interface,
and adds overloading for stringification when composed onto a
class.
Note that if you compose this role onto another role, that role
must use L<MooseX::Role::WithOverloading>.
=head1 REQUIRED METHODS
=head2 as_string
=head2 throw
=head2 rethrow
=head1 METHODS
=head2 meta
Provided by Moose
=head1 SEE ALSO
=over 4
=item L<Catalyst>
=item L<Catalyst::Exception>
=back
=head1 AUTHORS
Catalyst Contributors, see Catalyst.pm
=head1 COPYRIGHT
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|