forked from postnl/postnl-magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Exception.php
90 lines (80 loc) · 2.43 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
/**
*
* ..::..
* ..::::::::::::..
* ::'''''':''::'''''::
* ::.. ..: : ....::
* :::: ::: : : ::
* :::: ::: : ''' ::
* ::::..:::..::.....::
* ''::::::::::::''
* ''::''
*
*
* NOTICE OF LICENSE
*
* This source file is subject to the Creative Commons License.
* It is available through the world-wide-web at this URL:
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
* If you are unable to obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please contact [email protected] for more information.
*
* @copyright Copyright (c) Total Internet Group B.V. https://tig.nl/copyright
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
*/
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.
*
* @package TIG\PostNL
*/
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;
}
}