summaryrefslogtreecommitdiff
path: root/lib/Moose/Exception/CoercingWithoutCoercions.pm
blob: b2e34380482b391d8080abec4599c9430c636501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package Moose::Exception::CoercingWithoutCoercions;
our $VERSION = '2.1405';

use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::TypeConstraint';

sub _build_message {
    my $self = shift;
    "Cannot coerce without a type coercion";
}
1;