Mercurial > pub > Impl
view Lib/IMPL/Web/NotAllowedException.pm @ 330:fe725fad2d90
Added access checking to web resources
| author | sergey | 
|---|---|
| date | Tue, 04 Jun 2013 19:25:54 +0400 | 
| parents | 673581380e79 | 
| children | 
line wrap: on
 line source
package IMPL::Web::NotAllowedException; use strict; use IMPL::Const qw(:prop); use IMPL::declare { base => [ 'IMPL::Web::Exception' => '@_' ] }; use IMPL::Resources::Strings { message => "The requested method isn't allowed" }; sub CTOR { my $this = shift; my %args = @_; $this->headers({ allow => $args{allow} }); } sub status { "405 Method Not Allowed" } 1; __END__
