static-php-cli/src/StaticPHP/Exception/WrongUsageException.php
crazywhalecc 14bfb4198a
v3 base
2025-11-30 15:35:04 +08:00

14 lines
331 B
PHP

<?php
declare(strict_types=1);
namespace StaticPHP\Exception;
/**
* Exception thrown for incorrect usage of SPC.
*
* This exception is used to indicate that the SPC is being used incorrectly.
* Such as when a command is not supported or an invalid argument is provided.
*/
class WrongUsageException extends SPCException {}