Mercurial > pub > Impl
annotate lib/IMPL/Config/ServiceNotFoundException.pm @ 427:09e0086a82a7 ref20150831 tip
Merge
author | cin |
---|---|
date | Tue, 15 May 2018 00:51:33 +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; |