You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phpcommandline/Exception/IncorrectParse.class.php

21 lines
460 B
PHP

<?php
/**
* Déclaration de l'exception CommandLine\Exception\IncorrectParse.
*/
namespace CommandLine\Exception;
use CommandLine\Argument\IArgument;
use LogicException;
/**
* Exception levée quand le parsage d'un argument échoue
*
* Exemples :
* - Valeur incorrecte
* - Valeur manquante
*
* @package CommandLine\Exception
*
* @see IArgument::parse()
*/
class IncorrectParse extends LogicException implements IException {}