Laralabs/here-api-oauth2-client

View on GitHub
src/Exceptions/InvalidHereApiAccessId.php

Summary

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

namespace Laralabs\HereOAuth\Exceptions;

use InvalidArgumentException;

class InvalidHereApiAccessId extends InvalidArgumentException
{
    protected $message = 'The HERE API Access ID is not a string, check the HERE_OAUTH_ACCESS_ID env variable is set';
}