Add an error that occurred when building this Definition.
$this
public function addError(string|\Closure|self $error) : static { if ($error instanceof self) { $this->errors = array_merge($this->errors, $error->errors); } else { $this->errors[] = $error; } return $this; }