mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 21:04:52 +08:00
14 lines
331 B
PHP
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 {}
|