|
|
|
@ -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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|