constify missing catch cases

- ensure all missing catch cases are constant where possible
This commit is contained in:
Philip Kaufmann 2015-10-27 17:39:42 +01:00
parent 8f3b3cdee4
commit ad5aae15b4
4 changed files with 5 additions and 5 deletions

View file

@ -94,7 +94,7 @@ static bool AppInitRPC(int argc, char* argv[])
// Check for -testnet or -regtest parameter (BaseParams() calls are only valid after this clause)
try {
SelectBaseParams(ChainNameFromCommandLine());
} catch(std::exception &e) {
} catch (const std::exception& e) {
fprintf(stderr, "Error: %s\n", e.what());
return false;
}

View file

@ -37,7 +37,7 @@ static bool AppInitRawTx(int argc, char* argv[])
// Check for -testnet or -regtest parameter (Params() calls are only valid after this clause)
try {
SelectParams(ChainNameFromCommandLine());
} catch(std::exception &e) {
} catch (const std::exception& e) {
fprintf(stderr, "Error: %s\n", e.what());
return false;
}

View file

@ -109,7 +109,7 @@ bool AppInit(int argc, char* argv[])
// Check for -testnet or -regtest parameter (Params() calls are only valid after this clause)
try {
SelectParams(ChainNameFromCommandLine());
} catch(std::exception &e) {
} catch (const std::exception& e) {
fprintf(stderr, "Error: %s\n", e.what());
return false;
}

View file

@ -104,7 +104,7 @@ public:
try {
CDataStream ssKey(slKey.data(), slKey.data() + slKey.size(), SER_DISK, CLIENT_VERSION);
ssKey >> key;
} catch(std::exception &e) {
} catch (const std::exception&) {
return false;
}
return true;
@ -120,7 +120,7 @@ public:
CDataStream ssValue(slValue.data(), slValue.data() + slValue.size(), SER_DISK, CLIENT_VERSION);
ssValue.Xor(*obfuscate_key);
ssValue >> value;
} catch(std::exception &e) {
} catch (const std::exception&) {
return false;
}
return true;