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 {
42  protected $_exceptions;
43 
50  public function addException(Zend_TimeSync_Exception $exception)
51  {
52  $this->_exceptions[] = $exception;
53  }
54 
60  public function get()
61  {
62  return $this->_exceptions;
63  }
64 }
addException(Zend_TimeSync_Exception $exception)
Definition: Exception.php:50