Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Public Member Functions | Protected Attributes
Zend_Locale_Math_Exception Class Reference
Inheritance diagram for Zend_Locale_Math_Exception:
Zend_Locale_Exception Zend_Exception

Public Member Functions

 __construct ($message, $op1=null, $op2=null, $result=null)
 
 getResults ()
 
- Public Member Functions inherited from Zend_Exception
 __construct ($msg='', $code=0, Exception $previous=null)
 
 __call ($method, array $args)
 
 __toString ()
 

Protected Attributes

 $op1 = null
 
 $op2 = null
 
 $result = null
 

Additional Inherited Members

- Protected Member Functions inherited from Zend_Exception
 _getPrevious ()
 

Detailed Description

Definition at line 35 of file Exception.php.

Constructor & Destructor Documentation

◆ __construct()

__construct (   $message,
  $op1 = null,
  $op2 = null,
  $result = null 
)

Definition at line 41 of file Exception.php.

42  {
43  $this->op1 = $op1;
44  $this->op2 = $op2;
45  $this->result = $result;
46  parent::__construct($message);
47  }
$message

Member Function Documentation

◆ getResults()

getResults ( )

Definition at line 49 of file Exception.php.

50  {
51  return array($this->op1, $this->op2, $this->result);
52  }

Field Documentation

◆ $op1

$op1 = null
protected

Definition at line 37 of file Exception.php.

◆ $op2

$op2 = null
protected

Definition at line 38 of file Exception.php.

◆ $result

$result = null
protected

Definition at line 39 of file Exception.php.


The documentation for this class was generated from the following file: