for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Boris Guéry <[email protected]>
*/
namespace Bgy\OAuth2\Storage;
use Bgy\OAuth2\Exception;
class AccessTokenNotFound extends \DomainException implements Exception
{
public function __construct($accessToken)
parent::__construct(sprintf(
'Bgy\OAuth2 Access Token "%s" not found',
$accessToken
));
}