Mercurial > pub > Impl
view lib/IMPL/TargetException.pm @ 415:3d24b10dd0d5 ref20150831
working on IMPL::Config::Container
author | cin |
---|---|
date | Tue, 20 Oct 2015 07:32:55 +0300 |
parents | c6e90e02dd17 |
children |
line wrap: on
line source
package IMPL::TargetException; use strict; use IMPL::Const qw(:prop); use IMPL::declare { base => [ 'IMPL::AppException' => undef, ], props => [ innerException => PROP_RO ] }; sub CTOR { my ($this,%args) = @_; $this->innerException($args{innerException}); } use IMPL::Resources::Strings { message => "An invocation target throws an exception '%innerException.message%' \n%innerException.callStack%\n__END_OF_INNER_EXCEPTION__\n" }; 1;