From 23fc354ce254e5ab6e236577cc755b996df34f4f Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Mon, 16 Mar 2015 19:14:58 +0100 Subject: [PATCH] Fixed issue #106: exception class name is wrong. --- src/vmime/charsetConverter_win.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vmime/charsetConverter_win.cpp b/src/vmime/charsetConverter_win.cpp index 2828fc66..d4a21a46 100644 --- a/src/vmime/charsetConverter_win.cpp +++ b/src/vmime/charsetConverter_win.cpp @@ -127,7 +127,7 @@ void charsetConverter_win::convert(const string& in, string& out, status* st) { if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION) { - throw exceptions::illegal_byte_sequence_in_charset(); + throw exceptions::illegal_byte_sequence_for_charset(); } else { @@ -156,7 +156,7 @@ void charsetConverter_win::convert(const string& in, string& out, status* st) { if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION) { - throw exceptions::illegal_byte_sequence_in_charset(); + throw exceptions::illegal_byte_sequence_for_charset(); } else {