| 51 | } |
| 52 | |
| 53 | Status::Status(bool silent, TErrorCode::type code) : msg_(new ErrorMsg(code)) { |
| 54 | if (!silent) VLOG(1) << msg_->msg() << "\n" << GetStackTrace(); |
| 55 | } |
| 56 | |
| 57 | Status::Status(bool silent, TErrorCode::type code, const ArgType& arg0) |
| 58 | : msg_(new ErrorMsg(code, arg0)) { |
nothing calls this directly
no test coverage detected