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 a scope provided to a service is invalid.
14 */
15class InvalidScopeException extends Exception
16{
17}
18