Updated access denied hint

This commit is contained in:
Alex Bilbie 2016-01-17 14:11:21 +00:00
parent 19b12cda8e
commit 5f22ead287

View File

@ -200,7 +200,7 @@ class OAuthServerException extends \Exception
*/
public static function accessDenied($hint = null)
{
return new static('The resource owner or authorization server denied the request.', 401, $hint);
return new static('The server denied the request.', 401, $hint);
}
/**