PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
razorpay
/
razorpay
/
src
/
Errors
<?php namespace Razorpay\Api\Errors; use Exception; class Error extends Exception { protected $httpStatusCode; public function __construct($message, $code, $httpStatusCode) { $this->code = $code; $this->message = $message; $this->httpStatusCode = $httpStatusCode; } public function getHttpStatusCode() { return $this->httpStatusCode; } }
[-] GatewayError.php
[edit]
[-] ServerError.php
[edit]
[+]
..
[-] ErrorCode.php
[edit]
[-] BadRequestError.php
[edit]
[-] SignatureVerificationError.php
[edit]
[-] Error.php
[edit]