Mercurial > pub > Impl
view Lib/IMPL/Web/Exception.pm @ 241:f48a1a9f4fa2
+Added ViewResult to allow implementation of the view environment.
*TTDocuments now storing creation parameters
*TTControls automatically propagating layout and title meta to their attributes
+Added UnauthorizaedException web exception
*minor fixes
author | sergey |
---|---|
date | Thu, 18 Oct 2012 04:49:55 +0400 |
parents | 6d8092d8ce1b |
children | 4ddb27ff4a0b |
line wrap: on
line source
package IMPL::Web::Exception; use strict; use warnings; use IMPL::Const qw(:prop); use IMPL::declare { base => [ 'IMPL::Exception' => '@_' ], props => [ headers => PROP_ALL ] }; sub status { "500 Internal error"; } 1; __END__ =pod =head1 NAME C<IMPL::Web::Exception> - Базовый класс для всех web-исключений, для ошибок вызванных по вине клиента. =head1 SYNOPSIS Вызов исключения =begin code use IMPL::require { WebException => 'IMPL::Web::WebException' }; sub MyWebHandler { # ... die WebException->new("something is wrong"); # ... } =end code =head1 MEMBERS =head2 C<status()> Возвращает C<HTTP> код ошибки. Каждый класс иключений должен переопределить данный метод. =head2 C<[get,set]headers> Ссылка на хеш с параметрами заголовка. =cut