Mercurial > pub > Impl
view Lib/IMPL/Web/Exception.pm @ 229:47f77e6409f7
heavily reworked the resource model of the web application:
*some ResourcesContraact functionality moved to Resource
+Added CustomResource
*Corrected action handlers
author | sergey |
---|---|
date | Sat, 29 Sep 2012 02:34:47 +0400 |
parents | c8fe3f84feba |
children | 6d8092d8ce1b |
line wrap: on
line source
package IMPL::Web::Exception; use strict; use warnings; use IMPL::lang qw(:constants); 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