Add exception classes for the redispatching exceptions.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Exception / Go.pm
diff --git a/lib/Catalyst/Exception/Go.pm b/lib/Catalyst/Exception/Go.pm
new file mode 100644 (file)
index 0000000..612be24
--- /dev/null
@@ -0,0 +1,14 @@
+package Catalyst::Exception::Go;
+
+use Moose;
+use namespace::clean -except => 'meta';
+
+extends 'Catalyst::Exception';
+
+has '+message' => (
+    default => "catalyst_go\n",
+);
+
+__PACKAGE__->meta->make_immutable;
+
+1;