We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85dcfc1 commit ad45c59Copy full SHA for ad45c59
src/Api/UserControl.php
@@ -437,8 +437,8 @@ private function validateMarketToken(): void
437
);
438
} catch (RequiredConstraintsViolated $e) {
439
throw new AccessDeniedException(t('Access denied, %s', $e->getMessage()));
440
- } catch (\Throwable) {
441
- throw new AccessDeniedException(t('Access denied, unable to validate token.'));
+ } catch (\Throwable $e) {
+ throw new AccessDeniedException(t('Access denied, unable to validate token. %s', $e->getMessage()));
442
}
443
444
0 commit comments