Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Exception.php
Go to the documentation of this file.
1 <?php
26 #require_once 'Zend/Exception.php';
27 
28 
36 {
37  protected $operand = null;
38 
39  public function __construct($message, $code = 0, $e = null, $op = null)
40  {
41  $this->operand = $op;
42  parent::__construct($message, $code, $e);
43  }
44 
45  public function getOperand()
46  {
47  return $this->operand;
48  }
49 }
__construct($message, $code=0, $e=null, $op=null)
Definition: Exception.php:39
$message
$code
Definition: info.phtml:12