10 lines
175 B
PHP
10 lines
175 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Modules\GoogleApi\Exception;
|
||
|
|
|
||
|
|
use RuntimeException;
|
||
|
|
|
||
|
|
class NoAccessTokenException extends RuntimeException implements GoogleApiExceptionInterface
|
||
|
|
{
|
||
|
|
}
|