class OptionDoesNotAllowArgumentException
Hierarchy
- class \SebastianBergmann\CliParser\OptionDoesNotAllowArgumentException extends \RuntimeException implements \SebastianBergmann\CliParser\Exception
Expanded class hierarchy of OptionDoesNotAllowArgumentException
File
-
vendor/
sebastian/ cli-parser/ src/ exceptions/ OptionDoesNotAllowArgumentException.php, line 15
Namespace
SebastianBergmann\CliParserView source
final class OptionDoesNotAllowArgumentException extends RuntimeException implements Exception {
public function __construct(string $option) {
parent::__construct(sprintf('Option "%s" does not allow an argument', $option));
}
}