command/Error: support class Error as C++ exception
This commit is contained in:
parent
75aa98ddaa
commit
f29949e14d
@ -128,6 +128,8 @@ ToAck(std::exception_ptr ep)
|
|||||||
#if defined(__GLIBCXX__) && __GLIBCXX__ < 20151204
|
#if defined(__GLIBCXX__) && __GLIBCXX__ < 20151204
|
||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
#else
|
#else
|
||||||
|
} catch (const Error &error) {
|
||||||
|
return ToAck(error);
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
#endif
|
#endif
|
||||||
try {
|
try {
|
||||||
@ -153,6 +155,8 @@ PrintError(Response &r, std::exception_ptr ep)
|
|||||||
} catch (const std::exception &e) {
|
} catch (const std::exception &e) {
|
||||||
LogError(e);
|
LogError(e);
|
||||||
r.Error(ToAck(ep), e.what());
|
r.Error(ToAck(ep), e.what());
|
||||||
|
} catch (const Error &error) {
|
||||||
|
print_error(r, error);
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
r.Error(ACK_ERROR_UNKNOWN, "Unknown error");
|
r.Error(ACK_ERROR_UNKNOWN, "Unknown error");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user