aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/downloader/transport_exception.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/downloader/transport_exception.rs')
-rw-r--r--crates/shirabe/src/downloader/transport_exception.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/shirabe/src/downloader/transport_exception.rs b/crates/shirabe/src/downloader/transport_exception.rs
index a7c64e1..e4f04f3 100644
--- a/crates/shirabe/src/downloader/transport_exception.rs
+++ b/crates/shirabe/src/downloader/transport_exception.rs
@@ -56,3 +56,11 @@ impl TransportException {
self.response_info = response_info;
}
}
+
+impl std::fmt::Display for TransportException {
+ fn fmt(&self, _f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+ todo!()
+ }
+}
+
+impl std::error::Error for TransportException {}