Removed unused constructor #3633

This commit is contained in:
Alexey Milovidov 2018-11-22 18:09:19 +03:00
parent 093557dbde
commit 7b919c9b2b

View File

@ -19,7 +19,6 @@ class Exception : public Poco::Exception
public:
Exception() {} /// For deferred initialization.
Exception(const std::string & msg, int code = 0) : Poco::Exception(msg, code) {}
Exception(const std::string & msg, const std::string & arg, int code = 0) : Poco::Exception(msg, arg, code) {}
Exception(const std::string & msg, const Exception & exc, int code = 0) : Poco::Exception(msg, exc, code), trace(exc.trace) {}
explicit Exception(const Poco::Exception & exc) : Poco::Exception(exc.displayText()) {}