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 RuntimeException;
use Throwable;
final class ValidationFailException extends RuntimeException implements XmlSchemaValidatorException
{
private const EXCODE_NIL = 0;
private function __construct(string $message, ?Throwable $previous = null)
parent::__construct($message, self::EXCODE_NIL, $previous);
}
public static function create(Throwable $previous): self
return new self('Schema validation failed: ' . $previous->getMessage(), $previous);