Mercurial > pub > Impl
view Lib/IMPL/Web/ForbiddenException.pm @ 232:5c82eec23bb6
Fixed degradations due refactoring
author | sergey |
---|---|
date | Tue, 09 Oct 2012 20:12:47 +0400 |
parents | 47f77e6409f7 |
children | a8dbddf491dd |
line wrap: on
line source
package IMPL::Web::ForbiddenException; use strict; use IMPL::declare { base => { 'IMPL::Web::Exception' => '@_' } }; sub status { "403 Forbidden" } 1; __END__ =pod =head1 NAME C<IMPL::Web::ForbiddenException> - операция не разрешается. =cut