1package Moose::Exception::CannotCreateHigherOrderTypeWithoutATypeParameter; 2our $VERSION = '2.2201'; 3 4use Moose; 5extends 'Moose::Exception'; 6with 'Moose::Exception::Role::TypeConstraint'; 7 8sub _build_message { 9 "You cannot create a Higher Order type without a type parameter"; 10} 11 12__PACKAGE__->meta->make_immutable; 131; 14