fErrorCode
{ return fErrorCode; }
int32 fErrorCode; // error code associated with the
status_t fErrorCode;
status_t fErrorCode = B_OK;
return strerror(fErrorCode);
debugMessage << "[" << Origin() << "] " << Message() << " (" << fErrorCode << ")";
return fErrorCode;
fErrorCode(errorCode),
if (fErrorCode != B_OK) {
debugMessage << "\n\tUnderlying System Error: " << fErrorCode << " ("
<< strerror(fErrorCode) << ")";
return fErrorCode;
fErrorCode(other.fErrorCode),
fErrorCode(errorCode),
fErrorCode = 0;