You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$nodeTemplateError->setMessage(sprintf('Template for "%s" only partially applied. Please check the newly created nodes.', $node->getNodeType()->getLabel()));
88
+
89
+
if ($exceptioninstanceof NodeConstraintException) {
90
+
$this->feedbackCollection->add(
91
+
$nodeTemplateError
92
+
);
93
+
94
+
$error = newError();
95
+
$error->setMessage($exception->getMessage());
96
+
$this->feedbackCollection->add(
97
+
$error
98
+
);
99
+
return;
100
+
}
101
+
if ($exceptioninstanceof EelException) {
102
+
$this->feedbackCollection->add(
103
+
$nodeTemplateError
104
+
);
105
+
106
+
$error = newError();
107
+
$error->setMessage(
108
+
$exception->getMessage()
109
+
);
110
+
$this->feedbackCollection->add(
111
+
$error
112
+
);
113
+
114
+
$level = 0;
115
+
while (($exception = $exception->getPrevious()) && $level <= 8) {
0 commit comments