ErrorException.php 3.09 KB
Newer Older
1 2 3
<?php
/**
 * @link http://www.yiiframework.com/
Qiang Xue committed
4
 * @copyright Copyright (c) 2008 Yii Software LLC
5 6 7 8 9
 * @license http://www.yiiframework.com/license/
 */

namespace yii\base;

10 11
use Yii;

12 13 14 15 16 17
/**
 * ErrorException represents a PHP error.
 *
 * @author Alexander Makarov <sam@rmcreative.ru>
 * @since 2.0
 */
18
class ErrorException extends Exception
19
{
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
	protected $severity;

	/**
	 * Constructs the exception
	 * @link http://php.net/manual/en/errorexception.construct.php
	 * @param $message [optional]
	 * @param $code [optional]
	 * @param $severity [optional]
	 * @param $filename [optional]
	 * @param $lineno [optional]
	 * @param $previous [optional]
	 */
	public function __construct($message = '', $code = 0, $severity = 1, $filename = __FILE__, $lineno = __LINE__, \Exception $previous = null)
	{
		parent::__construct($message, $code, $previous);
		$this->severity = $severity;
		$this->file = $filename;
		$this->line = $lineno;
38 39 40 41 42 43 44 45 46

		if (function_exists('xdebug_get_function_stack')) {
			$trace = array_slice(array_reverse(xdebug_get_function_stack()), 3, -1);
			foreach ($trace as &$frame) {
				if (!isset($frame['function'])) {
					$frame['function'] = 'unknown';
				}

				// XDebug < 2.1.1: http://bugs.xdebug.org/view.php?id=695
47
				if (!isset($frame['type']) || $frame['type'] === 'static') {
48
					$frame['type'] = '::';
49 50
				} elseif ($frame['type'] === 'dynamic') {
					$frame['type'] = '->';
51 52 53 54 55 56 57 58 59 60 61 62 63
				}

				// XDebug has a different key name
				$frame['args'] = array();
				if (isset($frame['params']) && !isset($frame['args'])) {
					$frame['args'] = $frame['params'];
				}
			}

			$ref = new \ReflectionProperty('Exception', 'trace');
			$ref->setAccessible(true);
			$ref->setValue($this, $trace);
		}
64 65 66 67 68 69 70 71 72 73 74 75
	}

	/**
	 * Gets the exception severity
	 * @link http://php.net/manual/en/errorexception.getseverity.php
	 * @return int the severity level of the exception.
	 */
	final public function getSeverity()
	{
		return $this->severity;
	}

76 77 78 79 80 81
	/**
	 * Returns if error is one of fatal type
	 *
	 * @param array $error error got from error_get_last()
	 * @return bool if error is one of fatal type
	 */
Qiang Xue committed
82
	public static function isFatalError($error)
83
	{
84
		return isset($error['type']) && in_array($error['type'], array(E_ERROR, E_PARSE, E_CORE_ERROR, E_CORE_WARNING, E_COMPILE_ERROR, E_COMPILE_WARNING));
85 86 87 88 89 90 91 92
	}

	/**
	 * @return string the user-friendly name of this exception
	 */
	public function getName()
	{
		$names = array(
93 94 95 96 97 98 99 100 101 102 103 104 105
			E_ERROR => Yii::t('yii', 'Fatal Error'),
			E_PARSE => Yii::t('yii', 'Parse Error'),
			E_CORE_ERROR => Yii::t('yii', 'Core Error'),
			E_COMPILE_ERROR => Yii::t('yii', 'Compile Error'),
			E_USER_ERROR => Yii::t('yii', 'User Error'),
			E_WARNING => Yii::t('yii', 'Warning'),
			E_CORE_WARNING => Yii::t('yii', 'Core Warning'),
			E_COMPILE_WARNING => Yii::t('yii', 'Compile Warning'),
			E_USER_WARNING => Yii::t('yii', 'User Warning'),
			E_STRICT => Yii::t('yii', 'Strict'),
			E_NOTICE => Yii::t('yii', 'Notice'),
			E_RECOVERABLE_ERROR => Yii::t('yii', 'Recoverable Error'),
			E_DEPRECATED => Yii::t('yii', 'Deprecated'),
106
		);
107
		return isset($names[$this->getCode()]) ? $names[$this->getCode()] : Yii::t('yii', 'Error');
108 109
	}
}