Добавлен класс ContingentManager и начата обработка неудачных попыток парсинга (запись в yaml-файл)

This commit is contained in:
2024-08-13 16:05:24 +03:00
parent bf76820498
commit f06eee3e95
36 changed files with 4662 additions and 67 deletions

View File

@ -0,0 +1,21 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Yaml\Exception;
/**
* Exception class thrown when an error occurs during dumping.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class DumpException extends RuntimeException
{
}