for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Eclipxe\XmlSchemaValidator\Exceptions;
use OutOfRangeException;
final class NamespaceNotFoundInSchemas extends OutOfRangeException implements XmlSchemaValidatorException
{
/** @var string */
private $namespace;
private function __construct(string $message, string $namespace)
parent::__construct($message);
$this->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;