play-code-live/vkplay-live-sdk

View on GitHub
src/Exception/ForbiddenException.php

Summary

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

namespace PlayCode\VKPlayLiveSDK\Exception;

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