The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Moose::Exception::CannotCalculateNativeType;
BEGIN {
  $Moose::Exception::CannotCalculateNativeType::AUTHORITY = 'cpan:STEVAN';
}
$Moose::Exception::CannotCalculateNativeType::VERSION = '2.1211';
use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::Instance';

sub _build_message {
    my $self = shift;
    "Cannot calculate native type for " . ref $self->instance;
}

1;