___init(); parent::__construct($objectManager, $eventManager, $areaList, $request, $response, $configLoader, $state, $registry, $exceptionHandler); } /** * {@inheritdoc} */ public function launch() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'launch'); return $pluginInfo ? $this->___callPlugins('launch', func_get_args(), $pluginInfo) : parent::launch(); } /** * {@inheritdoc} */ public function catchException(\Magento\Framework\App\Bootstrap $bootstrap, \Exception $exception) : bool { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'catchException'); return $pluginInfo ? $this->___callPlugins('catchException', func_get_args(), $pluginInfo) : parent::catchException($bootstrap, $exception); } }