MCPcopy Create free account
hub / github.com/catboost/catboost / TSystemError

Class TSystemError

util/generic/yexception.h:86–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86class TSystemError: public yexception {
87public:
88 TSystemError(int status)
89 : Status_(status)
90 {
91 Init();
92 }
93
94 TSystemError()
95 : TSystemError(LastSystemError())
96 {
97 }
98
99 int Status() const noexcept {
100 return Status_;
101 }
102
103private:
104 void Init();
105
106private:
107 int Status_;
108};
109
110class TIoException: public TSystemError {
111};

Callers 7

AsyncConnectMethod · 0.85
CheckMethod · 0.85
UptimeFunction · 0.85
ProcessUptimeFunction · 0.85
SetEnvFunction · 0.85
UnsetEnvFunction · 0.85
Y_UNIT_TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected