diff options
author | Jack Lloyd <[email protected]> | 2015-12-11 09:42:06 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-12-11 09:42:06 -0500 |
commit | 6b9a3a534071ef84c121c406559f8fc7ad546104 (patch) | |
tree | c11480ad1f07e443ba4e992fefcd618b532c2e93 /src/lib/compression/lzma | |
parent | 79a51627ee11f4d7f55d589751b30463d1f02a76 (diff) |
Reroot the exception hierarchy into a toplevel Exception class
As the alternatives are unfortunate for applications trying to catch
all library errors, and it seems deriving from std::runtime_error
causes problems with MSVC DLLs (GH #340)
Effectively reverts 2837e915d82e43
Diffstat (limited to 'src/lib/compression/lzma')
-rw-r--r-- | src/lib/compression/lzma/lzma.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/compression/lzma/lzma.cpp b/src/lib/compression/lzma/lzma.cpp index 93a969d70..6e5217767 100644 --- a/src/lib/compression/lzma/lzma.cpp +++ b/src/lib/compression/lzma/lzma.cpp @@ -43,7 +43,7 @@ class LZMA_Stream : public Zlib_Style_Stream<lzma_stream, byte> if(rc == LZMA_MEM_ERROR) throw std::bad_alloc(); else if (rc != LZMA_OK && rc != LZMA_STREAM_END) - throw std::runtime_error("Lzma error"); + throw Exception("Lzma error"); return (rc == LZMA_STREAM_END); } @@ -63,7 +63,7 @@ class LZMA_Compression_Stream : public LZMA_Stream if(rc == LZMA_MEM_ERROR) throw std::bad_alloc(); else if(rc != LZMA_OK) - throw std::runtime_error("lzma compress initialization failed"); + throw Exception("lzma compress initialization failed"); } }; @@ -78,7 +78,7 @@ class LZMA_Decompression_Stream : public LZMA_Stream if(rc == LZMA_MEM_ERROR) throw std::bad_alloc(); else if(rc != LZMA_OK) - throw std::runtime_error("Bad setting in lzma_stream_decoder"); + throw Exception("Bad setting in lzma_stream_decoder"); } }; |