play-code-live/vkplay-live-sdk

View on GitHub
src/Exception/InvalidParamException.php

Summary

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

namespace PlayCode\VKPlayLiveSDK\Exception;

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