Mercurial > pub > Impl
view Lib/IMPL/Web/ForbiddenException.pm @ 258:91bae9f41a9c
Added class for referencing paths in configuration files
author | sergey |
---|---|
date | Tue, 18 Dec 2012 19:18:31 +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