openstackid/app/libs/oauth2/exceptions/MissingClientIdParam.php

21 lines
365 B
PHP

<?php
namespace oauth2\exceptions;
use Exception;
use oauth2\OAuth2Protocol;
/**
* Class MissingClientIdParam
* @package oauth2\exceptions
*/
final class MissingClientIdParam extends OAuth2BaseException
{
/**
* @return string
*/
public function getError()
{
return OAuth2Protocol::OAuth2Protocol_Error_UnauthorizedClient;
}
}