refactor(error-handling): replace generic Exception with RuntimeException for improved error specificity

This commit is contained in:
Andras Bacsai
2025-05-29 10:49:55 +02:00
parent 0369909408
commit 2361c34a53
3 changed files with 5 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ class DeleteService
instant_remote_process(["docker rm -f $service->uuid"], $server, throwError: false);
} catch (\Exception $e) {
throw new \Exception($e->getMessage());
throw new \RuntimeException($e->getMessage());
} finally {
if ($deleteConfigurations) {
$service->deleteConfigurations();