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
zendframework1
library
Zend
Locale
Math
Exception.php
Go to the documentation of this file.
1
<?php
26
#require_once 'Zend/Locale/Exception.php';
27
28
35
class
Zend_Locale_Math_Exception
extends
Zend_Locale_Exception
36
{
37
protected
$op1
=
null
;
38
protected
$op2
=
null
;
39
protected
$result
=
null
;
40
41
public
function
__construct
(
$message
,
$op1
=
null
,
$op2
=
null
,
$result
=
null
)
42
{
43
$this->op1 =
$op1
;
44
$this->op2 =
$op2
;
45
$this->result =
$result
;
46
parent::__construct(
$message
);
47
}
48
49
public
function
getResults
()
50
{
51
return
array($this->op1, $this->op2, $this->result);
52
}
53
}
$message
$message
Definition:
notifications.php:7
Zend_Locale_Exception
Definition:
Exception.php:35
Zend_Locale_Math_Exception\__construct
__construct($message, $op1=null, $op2=null, $result=null)
Definition:
Exception.php:41
Zend_Locale_Math_Exception\$op2
$op2
Definition:
Exception.php:38
Zend_Locale_Math_Exception\getResults
getResults()
Definition:
Exception.php:49
Zend_Locale_Math_Exception
Definition:
Exception.php:35
Zend_Locale_Math_Exception\$op1
$op1
Definition:
Exception.php:37
Zend_Locale_Math_Exception\$result
$result
Definition:
Exception.php:39