namespace = $namespace; } public static function create(string $namespace): self { return new self("Namespace $namespace does not exists in the schemas", $namespace); } public function getNamespace(): string { return $this->namespace; } }