3 declare(strict_types=1);
61 if (is_null($this->code)) {
63 $data = $this->
raw(self::FIELD_CODE);
67 $this->code = (string) $data;
81 if (is_null($this->message)) {
83 $data = $this->
raw(self::FIELD_MESSAGE);
87 $this->message = (string) $data;
101 if (is_null($this->detailedErrorMessage)) {
103 $data = $this->
raw(self::FIELD_DETAILED_ERROR_MESSAGE);
104 if (is_null($data)) {
107 $this->detailedErrorMessage = (string) $data;
133 public function by(
string $key)
135 $data = $this->
raw($key);
136 if (is_null($data)) {