1diff --color -Naur a/html/CharsetConverter.cc b/html/CharsetConverter.cc
2--- a/html/CharsetConverter.cc 2018-12-29 03:13:56.000000000 +0000
3+++ b/html/CharsetConverter.cc 2021-05-31 23:03:10.705334580 +0100
4@@ -7,7 +7,7 @@
5 using namespace std;
6 using namespace htmlcxx;
7
8-CharsetConverter::CharsetConverter(const string &from, const string &to) throw (Exception)
9+CharsetConverter::CharsetConverter(const string &from, const string &to)
10 {
11 mIconvDescriptor = iconv_open(to.c_str(), from.c_str());
12 if (mIconvDescriptor == (iconv_t)(-1))
13diff --color -Naur a/html/CharsetConverter.h b/html/CharsetConverter.h
14--- a/html/CharsetConverter.h 2018-12-29 03:13:56.000000000 +0000
15+++ b/html/CharsetConverter.h 2021-05-31 23:03:19.042574598 +0100
16@@ -17,7 +17,7 @@
17 : std::runtime_error(arg) {}
18 };
19
20- CharsetConverter(const std::string &from, const std::string &to) throw (Exception);
21+ CharsetConverter(const std::string &from, const std::string &to);
22 ~CharsetConverter();
23
24 std::string convert(const std::string &input);