Basic usage

Previous Exceptions

Since Zend Framework 1.10, Zend_Exception implements the PHP 5.3 support for previous exceptions. Simply put, when in a catch() block, you can throw a new exception that references the original exception, which helps provide additional context when debugging. By providing this support in Zend Framework, your code may now be forwards compatible with PHP 5.3.

Previous exceptions are indicated as the third argument to an exception constructor.

Example #1 Previous exceptions

  1. span style="color: #ff0000;">'[''] has the previous exception of ['']''[''] does not have a previous exception'// displays all exceptions starting by the first thrown
  2.     // exception if available.
  3. }

Basic usage