Mercurial > pub > Impl
annotate lib/IMPL/Config/ServiceNotFoundException.pm @ 423:60c2892a577c ref20150831
working on base class system
author | cin |
---|---|
date | Mon, 02 Apr 2018 07:35:23 +0300 |
parents | cc2cf8c0edc2 |
children |
rev | line source |
---|---|
416 | 1 package IMPL::Config::ServiceNotFoundException; |
2 use strict; | |
3 | |
4 use IMPL::declare { | |
5 base => [ | |
6 'IMPL::AppException' => undef | |
7 ], | |
8 props => [ | |
9 serviceName => 'ro', | |
10 ] | |
11 }; | |
12 | |
13 use IMPL::Resources::Strings { | |
14 message => "Service %serviceName% not found" | |
15 }; | |
16 | |
17 sub CTOR { | |
18 my ( $this, %args ) = @_; | |
19 | |
20 $this->$_( $args{$_} ) foreach grep exists $args{$_}, qw( | |
21 serviceName | |
22 ); | |
23 } | |
24 | |
25 1; |