Sha256: e447a97f8c2d32e8221fa472c0770f13031b5de0fc5d1dd47ec14019a2e3d394
Contents?: true
Size: 627 Bytes
Versions: 15
Compression:
Stored size: 627 Bytes
Contents
package Javonet::Core::Handler::CommandHandler::ArrayGetRankHandler; use strict; use warnings FATAL => 'all'; use lib 'lib'; use Moose; use Nice::Try; use aliased 'Javonet::Core::Exception::Exception' => 'Exception'; extends 'Javonet::Core::Handler::CommandHandler::AbstractCommandHandler'; 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;
Version data entries
15 entries across 12 versions & 1 rubygems