Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-signifyd
Model
SignifydGateway
ApiCallException.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Signifyd\Model\SignifydGateway
;
7
11
class
ApiCallException
extends
GatewayException
12
{
16
private
$requestData;
17
25
public
function
__construct
(
$message
=
''
,
$code
= 0, \Exception $previous =
null
, $requestData =
''
)
26
{
27
$this->requestData = $requestData;
28
parent::__construct(
$message
,
$code
, $previous);
29
}
30
35
public
function
getRequestData
()
36
{
37
return
$this->requestData;
38
}
39
}
Magento\Signifyd\Model\SignifydGateway\GatewayException
Definition:
GatewayException.php:11
Magento\Signifyd\Model\SignifydGateway\ApiCallException\__construct
__construct($message='', $code=0, \Exception $previous=null, $requestData='')
Definition:
ApiCallException.php:25
$message
$message
Definition:
notifications.php:7
Magento\Signifyd\Model\SignifydGateway
Magento\Signifyd\Model\SignifydGateway\ApiCallException\getRequestData
getRequestData()
Definition:
ApiCallException.php:35
$code
$code
Definition:
info.phtml:12
Magento\Signifyd\Model\SignifydGateway\ApiCallException
Definition:
ApiCallException.php:11