From f31b101ce1e921a026ba234b1f0a83b0392bc118 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 20 May 2026 08:33:49 +0900 Subject: fix(compile): fix all remaining compile errors Co-Authored-By: Claude Opus 4.7 (1M context) --- .../component/filesystem/exception/io_exception.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'crates/shirabe-external-packages/src/symfony/component/filesystem/exception') diff --git a/crates/shirabe-external-packages/src/symfony/component/filesystem/exception/io_exception.rs b/crates/shirabe-external-packages/src/symfony/component/filesystem/exception/io_exception.rs index 3ffcc9c..a5f2844 100644 --- a/crates/shirabe-external-packages/src/symfony/component/filesystem/exception/io_exception.rs +++ b/crates/shirabe-external-packages/src/symfony/component/filesystem/exception/io_exception.rs @@ -5,6 +5,21 @@ pub struct IOException { pub path: Option, } +impl IOException { + pub fn new( + message: String, + code: i64, + _previous: Option>, + path: Option, + ) -> Self { + Self { + message, + code, + path, + } + } +} + impl std::fmt::Display for IOException { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "{}", self.message) -- cgit v1.3.1