mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-05 07:45:39 +08:00
14 lines
352 B
PHP
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 {}
|