1<?php
2
3/**
4 * @author David Desberg <david@daviddesberg.com>
5 * Released under the MIT license.
6 */
7
8namespace OAuth\OAuth2\Service\Exception;
9
10use OAuth\Common\Exception\Exception;
11
12/**
13 * Exception thrown when service is requested to refresh the access token but no refresh token can be found.
14 */
15class MissingRefreshTokenException extends Exception
16{
17}
18