Skip to content

Commit

Permalink
Adjust exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
gradinarufelix committed Oct 4, 2023
1 parent b17e3d6 commit b0a1310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Service/ZoomApiAccessTokenFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function initializeObject(): void
$zoomApiClientId = $this->settings['auth']['clientId'];
$zoomApiClientSecret = $this->settings['auth']['clientSecret'];
if (!$zoomApiClientId || !$zoomApiClientSecret) {
throw new ZoomApiException('Please set a Zoom Account ID, Client ID and Secret for CodeQ.ZoomApi to be able to authenticate.', 1695830249149);
throw new ZoomApiException('Please set a Client ID and Secret for CodeQ.ZoomApi to be able to authenticate.', 1695830249149);
}
$this->client = $this->buildClient($zoomApiClientId, $zoomApiClientSecret);
}
Expand Down

0 comments on commit b0a1310

Please sign in to comment.