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