comparison Lib/IMPL/Web/ForbiddenException.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 6b1dda998839
children a8dbddf491dd
comparison
equal deleted inserted replaced
228:431db7034a88 229:47f77e6409f7
5 base => { 5 base => {
6 'IMPL::Web::Exception' => '@_' 6 'IMPL::Web::Exception' => '@_'
7 } 7 }
8 }; 8 };
9 9
10 sub code { 10 sub status {
11 403 11 "403 Forbidden"
12 } 12 }
13 13
14 1; 14 1;
15 15
16 __END__ 16 __END__