Mercurial > pub > Impl
view Lib/IMPL/Web/NotAllowedException.pm @ 342:1090c1dd7429
TTControl: added a helper method 'CreateControlFromTemlpate'
author | cin |
---|---|
date | Wed, 03 Jul 2013 03:53:12 +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__