Throw RuntimeException instead of Exception when no resource is found in ScheduledTaskJob
This commit is contained in:
parent
f1e4395a83
commit
ce60a39dc5
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ public function __construct($task)
|
|||
} 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…
Reference in a new issue