diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-07-12 22:39:20 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-07-13 08:23:06 +0900 |
| commit | e94a046a548795b8675bc109c87413de6bca53e7 (patch) | |
| tree | 9958efead32039de87f3564c77a7b09f978a13ef /src/WebAssembly/Execution/LinkErrorException.php | |
| parent | d1c268b76f65e69ea708096d5023c4d731cff594 (diff) | |
| download | php-waddiwasi-e94a046a548795b8675bc109c87413de6bca53e7.tar.gz php-waddiwasi-e94a046a548795b8675bc109c87413de6bca53e7.tar.zst php-waddiwasi-e94a046a548795b8675bc109c87413de6bca53e7.zip | |
feat: add Linker class
Diffstat (limited to 'src/WebAssembly/Execution/LinkErrorException.php')
| -rw-r--r-- | src/WebAssembly/Execution/LinkErrorException.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/WebAssembly/Execution/LinkErrorException.php b/src/WebAssembly/Execution/LinkErrorException.php new file mode 100644 index 0000000..35db57f --- /dev/null +++ b/src/WebAssembly/Execution/LinkErrorException.php @@ -0,0 +1,11 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\WebAssembly\Execution; + +use RuntimeException; + +final class LinkErrorException extends RuntimeException +{ +} |
