Add Exception::Interface and Exception::Basic. Make ::Base, ::Go and ::Detach use...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Exception / Interface.pm
1 package Catalyst::Exception::Interface;
2
3 use Moose::Role;
4 use namespace::autoclean;
5
6 requires qw/as_string throw rethrow/;
7
8 1;