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

14 lines
352 B
PHP

<?php
declare(strict_types=1);
namespace StaticPHP\Exception;
/**
* Exception thrown when an error occurs during the downloading process.
*
* 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 {}