Laralabs/here-api-oauth2-client

View on GitHub
src/Exceptions/HereOAuthTokenExpired.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Laralabs\HereOAuth\Exceptions;

use RuntimeException;

class HereOAuthTokenExpired extends RuntimeException
{
    protected $message = 'The HERE API OAuth access token has expired from the cache';
}