mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
92 lines
2.0 KiB
PHP
92 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Cache\Storage;
|
|
|
|
use ArrayObject;
|
|
use Exception;
|
|
|
|
class ExceptionEvent extends PostEvent
|
|
{
|
|
/**
|
|
* The exception to be thrown
|
|
*
|
|
* @var Exception
|
|
*/
|
|
protected $exception;
|
|
|
|
/**
|
|
* Throw the exception or use the result
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $throwException = true;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* Accept a target and its parameters.
|
|
*
|
|
* @param string $name
|
|
* @param StorageInterface $storage
|
|
* @param ArrayObject $params
|
|
* @param mixed $result
|
|
* @param Exception $exception
|
|
*/
|
|
public function __construct($name, StorageInterface $storage, ArrayObject $params, & $result, Exception $exception)
|
|
{
|
|
parent::__construct($name, $storage, $params, $result);
|
|
$this->setException($exception);
|
|
}
|
|
|
|
/**
|
|
* Set the exception to be thrown
|
|
*
|
|
* @param Exception $exception
|
|
* @return ExceptionEvent
|
|
*/
|
|
public function setException(Exception $exception)
|
|
{
|
|
$this->exception = $exception;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the exception to be thrown
|
|
*
|
|
* @return Exception
|
|
*/
|
|
public function getException()
|
|
{
|
|
return $this->exception;
|
|
}
|
|
|
|
/**
|
|
* Throw the exception or use the result
|
|
*
|
|
* @param bool $flag
|
|
* @return ExceptionEvent
|
|
*/
|
|
public function setThrowException($flag)
|
|
{
|
|
$this->throwException = (bool) $flag;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Throw the exception or use the result
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function getThrowException()
|
|
{
|
|
return $this->throwException;
|
|
}
|
|
}
|