-
Notifications
You must be signed in to change notification settings - Fork 60
/
Exception.php
59 lines (48 loc) · 1.44 KB
/
Exception.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
<?php
namespace TIG\PostNL;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Phrase;
/**
* We are getting code sniffer warnings that we cannot execute code in the constructor. This makes sense for objects
* that are used in dependency injection. As this is a Exception, this is not the case. So that's why we are disabling
* the code sniffer for this file.
*/
class Exception extends LocalizedException
{
private $exceptionMessage;
/**
* @param Phrase|string $message
* @param int $code
* @param null $previous
*/
// @codingStandardsIgnoreStart
public function __construct($message, $code = 0, $previous = null)
{
$message = $this->getMessageString($message);
// @codingStandardsIgnoreLine
$this->exceptionMessage = __($message);
if ($code !== 0) {
$code = (string) $code;
$this->code = $code;
$message = '[' . $code . '] ' . $message;
}
if (is_string($message)) {
// @codingStandardsIgnoreLine
$message = __($message);
}
parent::__construct($message, $previous);
}
// @codingStandardsIgnoreEnd
/**
* @param $message
*
* @return string
*/
private function getMessageString($message)
{
if ($message instanceof Phrase) {
return $message->render();
}
return $message;
}
}