Files
HRM-System/vendor/yoomoney/yookassa-sdk-php/tests/Common/Exceptions/AuthorizeExceptionTest.php
2026-04-13 08:19:53 +08:00

17 lines
389 B
PHP

<?php
namespace Tests\YooKassa\Common\Exceptions;
use YooKassa\Common\Exceptions\AuthorizeException;
/**
* @internal
*/
class AuthorizeExceptionTest extends ApiExceptionTest
{
public function getTestInstance($message = '', $code = 0, $responseHeaders = [], $responseBody = '')
{
return new AuthorizeException($message, $code, $responseHeaders, $responseBody);
}
}