mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-04 23:35:40 +08:00
v3 base
This commit is contained in:
25
src/StaticPHP/Exception/PatchException.php
Normal file
25
src/StaticPHP/Exception/PatchException.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace StaticPHP\Exception;
|
||||
|
||||
/**
|
||||
* PatchException is thrown when there is an issue applying a patch,
|
||||
* such as a failure in the patch process or conflicts during patching.
|
||||
*/
|
||||
class PatchException extends SPCException
|
||||
{
|
||||
public function __construct(private readonly string $patch_module, $message, $code = 0, ?\Exception $previous = null)
|
||||
{
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the name of the patch module that caused the exception.
|
||||
*/
|
||||
public function getPatchModule(): string
|
||||
{
|
||||
return $this->patch_module;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user