PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
razorpay
/
razorpay
/
src
/
Errors
<?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; } }
[-] GatewayError.php
[edit]
[-] ServerError.php
[edit]
[+]
..
[-] ErrorCode.php
[edit]
[-] BadRequestError.php
[edit]
[-] SignatureVerificationError.php
[edit]
[-] Error.php
[edit]