Enhance error handling in artifact downloading process

This commit is contained in:
crazywhalecc
2026-04-16 14:08:06 +08:00
parent 182f4ee0d0
commit 3ff0742ff1
4 changed files with 46 additions and 5 deletions

View File

@@ -10,4 +10,15 @@ namespace StaticPHP\Exception;
* This exception is used to indicate that a download operation has failed,
* typically due to network issues, invalid URLs, or other related problems.
*/
class DownloaderException extends SPCException {}
class DownloaderException extends SPCException
{
public function __construct(string $message = '', int $code = 0, ?\Throwable $previous = null, private readonly ?string $artifact_name = null)
{
parent::__construct($message, $code, $previous);
}
public function getArtifactName(): ?string
{
return $this->artifact_name;
}
}