play-code-live/vkplay-live-sdk

View on GitHub
src/Exception/RateLimitExceededException.php

Summary

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

namespace PlayCode\VKPlayLiveSDK\Exception;

class RateLimitExceededException extends ClientException
{
    public function __construct(string $message)
    {
        parent::__construct($message, 429);
    }
}