From ffb4b72913de67123fd64cd9e133e97b7d4dd570 Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Thu, 11 Sep 2025 00:09:37 +0200 Subject: [PATCH] ensure `UnsupportedDecompressionError <: Exception` Not sure if there is any benefit, but I suppose the intention is for this type, as an exception type, to subtype `Exception`. --- src/decompression.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decompression.jl b/src/decompression.jl index a3dd471a..a48c7e34 100644 --- a/src/decompression.jl +++ b/src/decompression.jl @@ -106,7 +106,7 @@ function compress( return Br, Bc end -struct UnsupportedDecompressionError +struct UnsupportedDecompressionError <: Exception msg::String end