Exception.php
1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/**
* @package AllediaFramework
* @contact www.alledia.com, hello@alledia.com
* @copyright 2016 Alledia.com, All rights reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
namespace Alledia\Framework;
defined('_JEXEC') or die();
class Exception extends \Exception
{
/**
* Set error message to include class::method() information. Could be used live
* but very helpful during development.
*
* @return string
*/
public function getTraceMessage()
{
$trace = $this->getTrace();
$caller = array_shift($trace);
$result = '';
if (!empty($caller['class'])) {
$result .= $caller['class'] . '::';
}
if (!empty($caller['function'])) {
$result .= $caller['function'] . '()';
}
return trim($result . ' ' . $this->message);
}
/**
* Get single line listing of call stack
*
* @return array
*/
public function getCallStack()
{
$trace = $this->getTrace();
$stack = array();
foreach ($trace as $caller) {
$row = 'Line ' . (empty($caller['line']) ? '' : $caller['line'] . ' - ');
if (!empty($caller['class'])) {
$row .= $caller['class'] . '::';
}
if (!empty($caller['function'])) {
$row .= $caller['function'] . '()';
}
if (!empty($caller['file'])) {
$row .= ' [' . $caller['file'] . ']';
}
$stack[] = $row;
}
return $stack;
}
}