diff options
Diffstat (limited to 'lib/Moose/Exception/CannotGenerateInlineConstraint.pm')
-rw-r--r-- | lib/Moose/Exception/CannotGenerateInlineConstraint.pm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/Moose/Exception/CannotGenerateInlineConstraint.pm b/lib/Moose/Exception/CannotGenerateInlineConstraint.pm new file mode 100644 index 0000000..55e5a1e --- /dev/null +++ b/lib/Moose/Exception/CannotGenerateInlineConstraint.pm @@ -0,0 +1,29 @@ +package Moose::Exception::CannotGenerateInlineConstraint; +our $VERSION = '2.1405'; + +use Moose; +extends 'Moose::Exception'; +with 'Moose::Exception::Role::TypeConstraint'; + +has 'parameterizable_type_object_name' => ( + is => 'ro', + isa => 'Str', + required => 1, + documentation => "This attribute can be used for fetching parameterizable type constraint(Moose::Meta::TypeConstraint::Parameterizable):\n". + " my \$type_constraint = Moose::Util::TypeConstraints::find_type_constraint( \$exception->type_name );\n", +); + +has 'value' => ( + is => 'ro', + isa => 'Str', + required => 1 +); + +sub _build_message { + my $self = shift; + my $type = $self->type_name; + + return "Can't generate an inline constraint for $type, since none was defined"; +} + +1; |