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

14 lines
394 B
PHP

<?php
declare(strict_types=1);
namespace StaticPHP\Exception;
/**
* BuildFailureException is thrown when a build process failed with other reasons.
*
* This exception indicates that the build operation did not complete successfully,
* which may be due to various reasons such as missing built-files, incorrect configurations, etc.
*/
class BuildFailureException extends SPCException {}