Mercurial > pub > Impl
view Lib/IMPL/Web/NotAllowedException.pm @ 379:a471e8b77544
sync
| author | cin | 
|---|---|
| date | Thu, 16 Jan 2014 18:10:50 +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__
