mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 21:04:52 +08:00
13 lines
307 B
PHP
13 lines
307 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace StaticPHP\Exception;
|
|
|
|
/**
|
|
* Exception for internal errors or vendor wrong usage in SPC.
|
|
*
|
|
* This exception is thrown when an unexpected internal error or vendor wrong usage occurs within the SPC framework.
|
|
*/
|
|
class SPCInternalException extends SPCException {}
|