From e583112899cbea7494ffdd73d7de380dd5f808c4 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 10 Jun 2026 00:54:22 +0900 Subject: feat(phase-c): resolve exception-handling phase-b TODOs * Catch specific exception types instead of broad/placeholder handling. * Drop the shim Countable trait. --- crates/shirabe/src/util/process_executor.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'crates/shirabe/src/util/process_executor.rs') diff --git a/crates/shirabe/src/util/process_executor.rs b/crates/shirabe/src/util/process_executor.rs index 40a212b..b62debe 100644 --- a/crates/shirabe/src/util/process_executor.rs +++ b/crates/shirabe/src/util/process_executor.rs @@ -305,7 +305,6 @@ impl ProcessExecutor { let final_result: Result<()> = match result { Ok(()) => Ok(()), Err(e) => { - // TODO(phase-b): catch ProcessSignaledException if let Some(pse) = e.downcast_ref::() { if signal_handler.is_triggered() { // exiting as we were signaled and the child process exited too due to the signal -- cgit v1.3.1