aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-02-26 20:52:24 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-02-26 20:52:39 +0100
commitb81f9718df7768d74d4c5dce1097ba74f8515a76 (patch)
treef6308bc6971891e48d4f34b77c4aaa900673e1ce /src/util.cpp
parentae7e5d7cebd9466d0c095233c9273e72e88fede1 (diff)
parent44235713ed0ad1810328f21108d32bbac04de87b (diff)
downloadbitcoin-b81f9718df7768d74d4c5dce1097ba74f8515a76.tar.xz
Merge pull request #3749
4423571 Replace PrintException with PrintExceptionContinue + throw (Wladimir J. van der Laan)
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 4e326ffcf4..36dfd8ab79 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -948,15 +948,6 @@ void LogException(std::exception* pex, const char* pszThread)
LogPrintf("\n%s", message);
}
-void PrintException(std::exception* pex, const char* pszThread)
-{
- std::string message = FormatException(pex, pszThread);
- LogPrintf("\n\n************************\n%s\n", message);
- fprintf(stderr, "\n\n************************\n%s\n", message.c_str());
- strMiscWarning = message;
- throw;
-}
-
void PrintExceptionContinue(std::exception* pex, const char* pszThread)
{
std::string message = FormatException(pex, pszThread);