Files
GseTDDUebungKCLR/database/perl/vendor/lib/Moose/Exception/Role/ParamsHash.pm
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01:00

13 lines
181 B
Perl

package Moose::Exception::Role::ParamsHash;
our $VERSION = '2.2014';
use Moose::Role;
has 'params' => (
is => 'ro',
isa => 'HashRef',
required => 1,
);
1;