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/MissingArgument.class.php

17 lines
419 B
PHP

<?php
/**
* Déclaration de l'exception CommandLine\Exception\MissingArgument
*/
namespace CommandLine\Exception;
use CommandLine\Solution;
use RuntimeException;
/**
* Exception levée quand un argument est manquant lors d'un parsage d'une solution
*
* @package CommandLine\Exception
*
* @see Solution::parseExplicit()
*/
class MissingArgument extends RuntimeException implements IException {}