aboutsummaryrefslogtreecommitdiff
path: root/lib/tokenstorage.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tokenstorage.php')
-rw-r--r--lib/tokenstorage.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/tokenstorage.php b/lib/tokenstorage.php
index f8f0806..4b5f420 100644
--- a/lib/tokenstorage.php
+++ b/lib/tokenstorage.php
@@ -95,12 +95,15 @@ class TokenStorage
)->fetchRow();
if ($tokenRow === false) {
- throw new OAuthException('Unknown token: ' . $type . ' / ' . $tokenKey);
+ throw new OAuthException(
+ 'Unknown token: ' . $type . ' / ' . $tokenKey,
+ OAUTH_TOKEN_REJECTED
+ );
}
$token = $this->fromDb($tokenRow);
if ($token->tokenKey != $tokenKey) {
- throw new OAuthException('Invalid token');
+ throw new OAuthException('Invalid token', OAUTH_TOKEN_REJECTED);
}
return $token;