diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-12 02:35:34 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-12 02:35:34 +0900 |
| commit | 2715b33a1ddc859a34c0ab8d730a7f1244a1e2ac (patch) | |
| tree | d24962687c5badc27a2a3b0ae45a1c5ce5f13caf /crates | |
| parent | 3e5ad185cc788f97e85db899aa2b2b972edc100e (diff) | |
| download | php-shirabe-2715b33a1ddc859a34c0ab8d730a7f1244a1e2ac.tar.gz php-shirabe-2715b33a1ddc859a34c0ab8d730a7f1244a1e2ac.tar.zst php-shirabe-2715b33a1ddc859a34c0ab8d730a7f1244a1e2ac.zip | |
feat(port): port ScriptExecutionException.php
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/shirabe/src/event_dispatcher/script_execution_exception.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/shirabe/src/event_dispatcher/script_execution_exception.rs b/crates/shirabe/src/event_dispatcher/script_execution_exception.rs index c641daa..fe871bc 100644 --- a/crates/shirabe/src/event_dispatcher/script_execution_exception.rs +++ b/crates/shirabe/src/event_dispatcher/script_execution_exception.rs @@ -1 +1,7 @@ //! ref: composer/src/Composer/EventDispatcher/ScriptExecutionException.php + +use shirabe_php_shim::RuntimeException; + +/// Thrown when a script running an external process exits with a non-0 status code +#[derive(Debug)] +pub struct ScriptExecutionException(pub RuntimeException); |
