diff --git a/frontend/classes/class.container.php b/frontend/classes/class.container.php index cf06ab3..662097d 100644 --- a/frontend/classes/class.container.php +++ b/frontend/classes/class.container.php @@ -394,9 +394,13 @@ class Container extends CPHPDatabaseRecordClass { throw new ContainerReinstallException("Reinstalling container failed during destroying: " . $e->getMessage(), $e->getCode(), $this->sInternalId); } - catch (ContainerDeployException $e) + catch (ContainerCreateException $e) { - throw new ContainerReinstallException("Reinstalling container failed during deploying: " . $e->getMessage(), $e->getCode(), $this->sInternalId); + throw new ContainerReinstallException("Reinstalling container failed during creation: " . $e->getMessage(), $e->getCode(), $this->sInternalId); + } + catch (ContainerConfigureException $e) + { + throw new ContainerReinstallException("Reinstalling container failed during configuration: " . $e->getMessage(), $e->getCode(), $this->sInternalId); } }