summaryrefslogtreecommitdiff
path: root/lib/Moose/Exception/Role/RoleForCreate.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Moose/Exception/Role/RoleForCreate.pm')
-rw-r--r--lib/Moose/Exception/Role/RoleForCreate.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/Moose/Exception/Role/RoleForCreate.pm b/lib/Moose/Exception/Role/RoleForCreate.pm
new file mode 100644
index 0000000..23e6b12
--- /dev/null
+++ b/lib/Moose/Exception/Role/RoleForCreate.pm
@@ -0,0 +1,13 @@
+package Moose::Exception::Role::RoleForCreate;
+our $VERSION = '2.1405';
+
+use Moose::Role;
+with 'Moose::Exception::Role::ParamsHash';
+
+has 'attribute_class' => (
+ is => 'ro',
+ isa => 'Str',
+ required => 1,
+);
+
+1;