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

◆ StackTrace() [7/9]

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

Definition at line 145 of file StackTrace.cs.

146 {
147 if (e == null)
148 {
149 throw new ArgumentNullException("e");
150 }
151 if (skipFrames < 0)
152 {
153 throw new ArgumentOutOfRangeException("skipFrames", SR.ArgumentOutOfRange_NeedNonNegNum);
154 }
156 }
void InitializeForException(Exception exception, int skipFrames, bool fNeedFileInfo)
Definition StackTrace.cs:56

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