Mercurial > pub > Impl
comparison Lib/IMPL/Web/NotAllowedException.pm @ 302:673581380e79
Added templates provider functionality to controls
minor fixes
| author | cin | 
|---|---|
| date | Mon, 01 Apr 2013 00:41:48 +0400 | 
| parents | 6d8092d8ce1b | 
| children | 
   comparison
  equal
  deleted
  inserted
  replaced
| 301:aeeb57a12046 | 302:673581380e79 | 
|---|---|
| 2 use strict; | 2 use strict; | 
| 3 | 3 | 
| 4 use IMPL::Const qw(:prop); | 4 use IMPL::Const qw(:prop); | 
| 5 use IMPL::declare { | 5 use IMPL::declare { | 
| 6 base => [ | 6 base => [ | 
| 7 'IMPL::Web::Exception' => sub { | 7 'IMPL::Web::Exception' => '@_' | 
| 8 my %args = @_; | |
| 9 $args{Message}; | |
| 10 } | |
| 11 ] | 8 ] | 
| 9 }; | |
| 10 | |
| 11 use IMPL::Resources::Strings { | |
| 12 message => "The requested method isn't allowed" | |
| 12 }; | 13 }; | 
| 13 | 14 | 
| 14 sub CTOR { | 15 sub CTOR { | 
| 15 my $this = shift; | 16 my $this = shift; | 
| 16 my %args = @_; | 17 my %args = @_; | 
