aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Stream/IoException.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-07-11 00:27:55 +0900
committernsfisis <nsfisis@gmail.com>2024-07-11 00:27:55 +0900
commit2e3505bea41552ba28978399cddead52d64d7e85 (patch)
treefe963ad219582f6b1decc9fc5ca99bc07302971c /src/Stream/IoException.php
parentba5a17008cb153512e484f144e35e28cff8b7640 (diff)
downloadphp-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.php11
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
+{
+}