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/Db/Exception.php';
27 
38 {
44  public function hasChainedException()
45  {
46  return ($this->getPrevious() !== null);
47  }
48 
52  public function getChainedException()
53  {
54  return $this->getPrevious();
55  }
56 }