From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use warnings FATAL => 'all';
use lib 'lib';
use Moose;
sub new {
my $class = shift;
my $self = {
required_parameters_count => 1
};
return bless $self, $class;
}
sub process {
my ($self, $command) = @_;
try {
die Exception->new("ArrayGetRankHandler not implemented");
}
catch ( $e ) {
return Exception->new($e);
}
}
no Moose;
1;