2022-08-19 19:48:37 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Symfony\Component\Console\Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
2023-04-25 20:11:49 +08:00
|
|
|
* Represents an incorrect option name or value typed in the console.
|
2022-08-19 19:48:37 +08:00
|
|
|
*
|
|
|
|
|
* @author Jérôme Tamarelle <jerome@tamarelle.net>
|
|
|
|
|
*/
|
|
|
|
|
class InvalidOptionException extends \InvalidArgumentException implements ExceptionInterface
|
|
|
|
|
{
|
|
|
|
|
}
|