Mercurial > pub > Impl
view lib/IMPL/Config/ServiceNotFoundException.pm @ 424:87af445663d7 ref20150831
IMPL::Object::_Base
| author | cin | 
|---|---|
| date | Tue, 03 Apr 2018 10:54:09 +0300 | 
| parents | cc2cf8c0edc2 | 
| children | 
line wrap: on
 line source
package IMPL::Config::ServiceNotFoundException; use strict; use IMPL::declare { base => [ 'IMPL::AppException' => undef ], props => [ serviceName => 'ro', ] }; use IMPL::Resources::Strings { message => "Service %serviceName% not found" }; sub CTOR { my ( $this, %args ) = @_; $this->$_( $args{$_} ) foreach grep exists $args{$_}, qw( serviceName ); } 1;
