JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "BadRequestError.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/vendor/razorpay/razorpay/src/Errors/BadRequestError.php
File size: 369 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
    }
}