Sha256: b379aaa19107948d3a94df11e9501f3ec8a29f14f6a269a32cfa4566dc5349d2
Contents?: true
Size: 545 Bytes
Versions: 38
Compression:
Stored size: 545 Bytes
Contents
package Moose::Exception::CannotFindTypeGivenToMatchOnType; our $VERSION = '2.2207'; use Moose; extends 'Moose::Exception'; has 'to_match' => ( is => 'ro', isa => 'Any', required => 1 ); has 'action' => ( is => 'ro', isa => 'Any', required => 1 ); has 'type' => ( is => 'ro', isa => 'Any', required => 1 ); sub _build_message { my $self = shift; my $type = $self->type; return "Cannot find or parse the type '$type'" } __PACKAGE__->meta->make_immutable; 1;
Version data entries
38 entries across 26 versions & 1 rubygems