comparison Lib/IMPL/Web/UnauthorizedException.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
children
comparison
equal deleted inserted replaced
240:abc7c26bf615 241:f48a1a9f4fa2
1 package IMPL::Web::UnauthorizedException;
2 use strict;
3
4 use IMPL::declare {
5 base => {
6 'IMPL::Web::Exception' => '@_'
7 }
8 };
9
10 sub status {
11 "401 Unauthorized"
12 }
13
14 1;
15
16 __END__
17
18 =pod
19
20 =head1 NAME
21
22 C<IMPL::Web::UnauthorizedException> - запрос требует идентификации пользователя.
23
24 =cut