Home | History | Annotate | Download | only in base

Lines Matching refs:exceptionCode

84 Status Status::fromExceptionCode(int32_t exceptionCode) {
85 return Status(exceptionCode, OK);
88 Status Status::fromExceptionCode(int32_t exceptionCode,
90 return Status(exceptionCode, OK, message);
99 Status::Status(int32_t exceptionCode, int32_t errorCode)
100 : mException(exceptionCode),
103 Status::Status(int32_t exceptionCode, int32_t errorCode, const char *message)
104 : mException(exceptionCode),
127 if (s.exceptionCode() == Status::EX_NONE) {
130 stream << "Status(" << exceptionToString(s.exceptionCode()) << "): '";
131 if (s.exceptionCode() == Status::EX_TRANSACTION_FAILED) {