From 2715b33a1ddc859a34c0ab8d730a7f1244a1e2ac Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 12 May 2026 02:35:34 +0900 Subject: feat(port): port ScriptExecutionException.php --- crates/shirabe/src/event_dispatcher/script_execution_exception.rs | 6 ++++++ 1 file changed, 6 insertions(+) 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); -- cgit v1.3.1