0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.119.255.170


Current Path : /var/www/results/dud/razorpay/razorpay-php/src/Errors/
Upload File :
Current File : /var/www/results/dud/razorpay/razorpay-php/src/Errors/BadRequestError.php

<?php

namespace Razorpay\Api\Errors;

class BadRequestError extends Error
{
    protected $field = null;

    public function __construct($message, $code, $httpStatusCode, $field = null)
    {
        parent::__construct($message, $code, $httpStatusCode);

        $this->field = $field;
    }

    public function getField()
    {
        return $this->field;
    }
}