1<?php
2
3namespace OAuth\OAuth2\Service\Exception;
4
5use OAuth\Common\Exception\Exception;
6
7/**
8 * Exception thrown when an invalid accessType for the Google Service is specified
9 */
10class InvalidAccessTypeException extends Exception
11{
12}
13