Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ StackTrace() [8/9]

System.Diagnostics.StackTrace.StackTrace ( Exception e,
int skipFrames,
bool fNeedFileInfo )
inline

Definition at line 158 of file StackTrace.cs.

159 {
160 if (e == null)
161 {
162 throw new ArgumentNullException("e");
163 }
164 if (skipFrames < 0)
165 {
166 throw new ArgumentOutOfRangeException("skipFrames", SR.ArgumentOutOfRange_NeedNonNegNum);
167 }
169 }
void InitializeForException(Exception exception, int skipFrames, bool fNeedFileInfo)
Definition StackTrace.cs:56

References System.SR.ArgumentOutOfRange_NeedNonNegNum, and System.Diagnostics.StackTrace.InitializeForException().