Cli/src/Exceptions/Command/UndefinedShortFlagException.php

11 lines
192 B
PHP
Raw Normal View History

2024-11-08 15:56:14 +01:00
<?php
namespace Nest\Cli\Exceptions\Command;
/**
* Exception thrown when an undefined short flag has been provided.
*/
class UndefinedShortFlagException extends UndefinedFlagException
{
}