diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-07-11 00:27:55 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-07-11 00:27:55 +0900 |
| commit | 2e3505bea41552ba28978399cddead52d64d7e85 (patch) | |
| tree | fe963ad219582f6b1decc9fc5ca99bc07302971c /src/Stream/IoException.php | |
| parent | ba5a17008cb153512e484f144e35e28cff8b7640 (diff) | |
| download | php-waddiwasi-2e3505bea41552ba28978399cddead52d64d7e85.tar.gz php-waddiwasi-2e3505bea41552ba28978399cddead52d64d7e85.tar.zst php-waddiwasi-2e3505bea41552ba28978399cddead52d64d7e85.zip | |
feat: support streaming decoding
Diffstat (limited to 'src/Stream/IoException.php')
| -rw-r--r-- | src/Stream/IoException.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Stream/IoException.php b/src/Stream/IoException.php new file mode 100644 index 0000000..bdd0723 --- /dev/null +++ b/src/Stream/IoException.php @@ -0,0 +1,11 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\Stream; + +use RuntimeException; + +final class IoException extends RuntimeException +{ +} |
