-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathLocalizedException.php
73 lines (66 loc) · 1.55 KB
/
LocalizedException.php
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
65
66
67
68
69
70
71
72
73
<?php
/**
* Localized Exception
*
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Exception;
use Magento\Framework\Phrase;
use Magento\Framework\Phrase\Renderer\Placeholder;
/**
* @api
*/
class LocalizedException extends \Exception
{
/**
* @var \Magento\Framework\Phrase
*/
protected $phrase;
/**
* @var string
*/
protected $logMessage;
/**
* Constructor
*
* @param \Magento\Framework\Phrase $phrase
* @param \Exception $cause
*/
public function __construct(Phrase $phrase, \Exception $cause = null)
{
$this->phrase = $phrase;
parent::__construct($phrase->render(), 0, $cause);
}
/**
* Get the un-processed message, without the parameters filled in
*
* @return string
*/
public function getRawMessage()
{
return $this->phrase->getText();
}
/**
* Get parameters, corresponding to placeholders in raw exception message
*
* @return array
*/
public function getParameters()
{
return $this->phrase->getArguments();
}
/**
* Get the un-localized message, but with the parameters filled in
*
* @return string
*/
public function getLogMessage()
{
if ($this->logMessage === null) {
$renderer = new Placeholder();
$this->logMessage = $renderer->render([$this->getRawMessage()], $this->getParameters());
}
return $this->logMessage;
}
}