static-php-cli/src/StaticPHP/Exception/WrongUsageException.php

14 lines
331 B
PHP
Raw Normal View History

2025-11-30 15:35:04 +08:00
<?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 {}