*/ class ServiceNotFoundException extends ZendException implements NotFoundExceptionInterface { private $serviceKey; public function __construct($serviceKey, $message = '') { parent::__construct('Service "' . $serviceKey . '" not found' . (empty($message) ? '' : ': ' . $message)); $this->serviceKey = $serviceKey; } public function getServiceKey() { return $this->serviceKey; } }