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
25 #require_once 'Zend/Exception.php';
26 
36 {
37  protected $_fileerror = null;
38 
39  public function __construct($message, $fileerror = 0)
40  {
41  $this->_fileerror = $fileerror;
42  parent::__construct($message);
43  }
44 
51  public function getFileError()
52  {
53  return $this->_fileerror;
54  }
55 }
__construct($message, $fileerror=0)
Definition: Exception.php:39
$message