Laralabs/here-api-oauth2-client

View on GitHub
src/Exceptions/ErrorRetrievingHereApiToken.php

Summary

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

namespace Laralabs\HereOAuth\Exceptions;

use RuntimeException;

class ErrorRetrievingHereApiToken extends RuntimeException
{
    protected $message = 'Unable to retrieve a HERE API OAuth access token, max attempts exceeded, check logs for more'
        . ' information';
}