11 lines
192 B
PHP
11 lines
192 B
PHP
|
<?php
|
||
|
|
||
|
namespace Nest\Cli\Exceptions\Command;
|
||
|
|
||
|
/**
|
||
|
* Exception thrown when an undefined short flag has been provided.
|
||
|
*/
|
||
|
class UndefinedShortFlagException extends UndefinedFlagException
|
||
|
{
|
||
|
}
|