From 2d4f236f5a829b9900ca1b9cefaba0f0771e5da2 Mon Sep 17 00:00:00 2001 From: lloyd Date: Sat, 17 Dec 2011 17:39:00 +0000 Subject: Make this exception somewhat more understandable. I think. --- src/filters/buf_filt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/filters/buf_filt.cpp b/src/filters/buf_filt.cpp index b332d74b8..ca3fa9a3c 100644 --- a/src/filters/buf_filt.cpp +++ b/src/filters/buf_filt.cpp @@ -82,7 +82,7 @@ void Buffered_Filter::write(const byte input[], size_t input_size) void Buffered_Filter::end_msg() { if(buffer_pos < final_minimum) - throw std::runtime_error("Buffered_Operation::final - not enough input"); + throw std::runtime_error("Buffered filter end_msg without enough input"); size_t spare_blocks = (buffer_pos - final_minimum) / main_block_mod; -- cgit v1.2.3