View file sdark.mobi/vendor/xsolla/xsolla-sdk-php/src/Exception/Webhook/ClientErrorException.php

File size: 340B
<?php

namespace Xsolla\SDK\Exception\Webhook;

class ClientErrorException extends XsollaWebhookException
{
    /**
     * @return string
     */
    public function getXsollaErrorCode()
    {
        return 'CLIENT_ERROR';
    }

    /**
     * @return int
     */
    public function getHttpStatusCode()
    {
        return 400;
    }
}