diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-12 02:10:57 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-12 02:17:58 +0900 |
| commit | 76fa34cb4df0ac1e619ac7c5899d37b77e4e4a13 (patch) | |
| tree | 66d5721031187e519c0861011b2fcec15bbf8f21 /crates/shirabe-php-shim | |
| parent | a8aa49013faa6c43bef628eea6d6b5687100c17a (diff) | |
| download | php-shirabe-76fa34cb4df0ac1e619ac7c5899d37b77e4e4a13.tar.gz php-shirabe-76fa34cb4df0ac1e619ac7c5899d37b77e4e4a13.tar.zst php-shirabe-76fa34cb4df0ac1e619ac7c5899d37b77e4e4a13.zip | |
feat(port): port IrrecoverableDownloadException.php
Diffstat (limited to 'crates/shirabe-php-shim')
| -rw-r--r-- | crates/shirabe-php-shim/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 0e8fab5..e79c971 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -1,4 +1,10 @@ #[derive(Debug)] +pub struct RuntimeException { + pub message: String, + pub code: i64, +} + +#[derive(Debug)] pub struct UnexpectedValueException { pub message: String, pub code: i64, |
