update project

This commit is contained in:
root
2026-05-30 01:11:35 -04:00
parent 3a0628ecc7
commit 2225f6bc72
9743 changed files with 1122482 additions and 59 deletions
+44
View File
@@ -0,0 +1,44 @@
<?php declare(strict_types=1);
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
namespace Nette\Schema;
use Nette;
/**
* Validation error.
*/
class ValidationException extends Nette\InvalidStateException
{
public function __construct(
?string $message,
/** @var list<Message> */
private array $messages = [],
) {
parent::__construct($message ?? $messages[0]->toString());
}
/** @return list<string> */
public function getMessages(): array
{
$res = [];
foreach ($this->messages as $message) {
$res[] = $message->toString();
}
return $res;
}
/** @return list<Message> */
public function getMessageObjects(): array
{
return $this->messages;
}
}