comparison Lib/IMPL/Web/ForbiddenException.pm @ 281:a8dbddf491dd

refactoring *IMPL::declare reset abstractProps static property after implementing these props *IMPL::Serialization: fixed bug with multiple text parts inside one node *IMPL::Web::Handler::TTView: removed obsolete property 'location' from 'view' template variable
author cin
date Mon, 11 Feb 2013 00:58:22 +0400
parents 47f77e6409f7
children
comparison
equal deleted inserted replaced
280:c6d0f889ef87 281:a8dbddf491dd
3 3
4 use IMPL::declare { 4 use IMPL::declare {
5 base => { 5 base => {
6 'IMPL::Web::Exception' => '@_' 6 'IMPL::Web::Exception' => '@_'
7 } 7 }
8 };
9
10 use IMPL::Resources::Strings {
11 message => "You don't have access to this resource"
8 }; 12 };
9 13
10 sub status { 14 sub status {
11 "403 Forbidden" 15 "403 Forbidden"
12 } 16 }