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

@@ -1289,7 +1289,7 @@ class Application extends BaseModel
try {
$yaml = Yaml::parse($this->docker_compose_raw);
} catch (\Exception $e) {
throw new \Exception($e->getMessage());
throw new \RuntimeException($e->getMessage());
}
$services = data_get($yaml, 'services');