for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Rinvex\Oauth\Exceptions;
use Illuminate\Auth\Access\AuthorizationException;
class InvalidAuthTokenException extends AuthorizationException
{
/**
* Create a new InvalidAuthTokenException for different auth tokens.
*
* @return static
*/
public static function different()
return new static('The provided auth token for the request is different from the session auth token.');
}