PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
omnipay
/
common
/
src
/
Common
/
Exception
<?php namespace Omnipay\Common\Exception; /** * Invalid Response exception. * * Thrown when a gateway responded with invalid or unexpected data (for example, a security hash did not match). */ class InvalidResponseException extends \Exception implements OmnipayException { public function __construct($message = "Invalid response from payment gateway", $code = 0, $previous = null) { parent::__construct($message, $code, $previous); } }
[-] RuntimeException.php
[edit]
[+]
..
[-] InvalidCreditCardException.php
[edit]
[-] BadMethodCallException.php
[edit]
[-] OmnipayException.php
[edit]
[-] InvalidRequestException.php
[edit]
[-] InvalidResponseException.php
[edit]