Sha256: 3df7c2df72876eee2d0b2d5113a96c282d1893a2e4d34a11731db96fc4e30559
Contents?: true
Size: 545 Bytes
Versions: 14
Compression:
Stored size: 545 Bytes
Contents
package Moose::Exception::CannotFindTypeGivenToMatchOnType; our $VERSION = '2.2206'; 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
14 entries across 7 versions & 1 rubygems