view lib/IMPL/Config/ActivationException.pm @ 422:b0481c071bea ref20150831

IMPL::Config::Container tests, YAMLConfiguration now works and tested
author cin
date Sun, 20 Aug 2017 00:20:41 +0300
parents cc2cf8c0edc2
children
line wrap: on
line source

package IMPL::Config::ActivationException;
use strict;

use IMPL::declare {
	base => [
		'IMPL::AppException' => undef
	],
	props => [
		activationStack => 'ro',
		serviceName     => 'ro',
		innerException  => 'ro',
		reason          => 'ro'
	]
};

use IMPL::Resources::Strings {
	message => "Error activating %serviceName%: %reason%"
};

sub CTOR {
	my ( $this, %args ) = @_;

	$this->$_( $args{$_} ) foreach grep exists $args{$_}, qw(
	  activationStack
	  serviceName
	  innerException
	  reason
	);
}

1;