Throw RuntimeException instead of Exception when no resource is found in ScheduledTaskJob

This commit is contained in:
Andras Bacsai 2024-01-31 13:45:58 +01:00
parent f1e4395a83
commit ce60a39dc5

View File

@ -39,7 +39,7 @@ class ScheduledTaskJob implements ShouldQueue
} else if ($application = $task->application()->first()) {
$this->resource = $application;
} else {
throw new \Exception('ScheduledTaskJob failed: No resource found.');
throw new \RuntimeException('ScheduledTaskJob failed: No resource found.');
}
$this->team = Team::find($task->team_id);
}