Throw RuntimeException instead of Exception when no resource is found in ScheduledTaskJob
This commit is contained in:
parent
f1e4395a83
commit
ce60a39dc5
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user