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.
21 lines
444 B
PHP
21 lines
444 B
PHP
<?php
|
|
/**
|
|
* Déclaration de l'exception CommandLine\Exception\IncorrectParse.
|
|
*/
|
|
namespace CommandLine\Exception;
|
|
|
|
use CommandLine\Argument\IArgument;
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Exception levée quand le parsage d'un argument échoue
|
|
*
|
|
* Exemples :
|
|
* - Valeur incorrecte
|
|
* - Valeur manquante
|
|
*
|
|
* @package CommandLine\Exception
|
|
*
|
|
* @see IArgument::parse()
|
|
*/
|
|
class IncorrectParse extends RuntimeException implements IException {} |