| Catalyst-Action-RenderView-ErrorHandler documentation | Contained in the Catalyst-Action-RenderView-ErrorHandler distribution. |
Catalyst::Action::RenderView::ErrorHandler::Action - A Role for any actions that want to react to errors.
version 0.100161
use Moose;
with 'Catalyst::Action::RenderView::ErrorHandler::Action';
A Role that should be consumed by actions that are implemented
This is the ID which you can refer to when defining handlers
This method need to be implemented by consuming classes.
It will be called with $context, and thus makes it possible to access $context->errors for instance, include them in an email or whatnot
Inherited from Moose
Andreas Marienborg <andremar@cpan.org>
This software is copyright (c) 2011 by Andreas Marienborg.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Catalyst-Action-RenderView-ErrorHandler documentation | Contained in the Catalyst-Action-RenderView-ErrorHandler distribution. |
package Catalyst::Action::RenderView::ErrorHandler::Action; BEGIN { $Catalyst::Action::RenderView::ErrorHandler::Action::VERSION = '0.100161'; } #ABSTRACT: A Role for any actions that want to react to errors. use strict; use warnings; use Moose::Role; has 'id' => (is => 'ro', isa => 'Str', required => 1); requires 'perform'; 1;
__END__