TaskSystem/vendor/symfony/process/Exception/InvalidArgumentException.php

22 lines
496 B
PHP
Raw Permalink Normal View History

2023-07-15 10:16:32 +08:00
<?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.
*/
2023-08-09 14:43:30 +08:00
namespace Symfony\Component\Process\Exception;
2023-07-15 10:16:32 +08:00
/**
2023-08-09 14:43:30 +08:00
* InvalidArgumentException for the Process Component.
2023-07-15 10:16:32 +08:00
*
* @author Romain Neutron <imprec@gmail.com>
*/
2023-08-09 14:43:30 +08:00
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
2023-07-15 10:16:32 +08:00
{
}