Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ThrowHelper.cs
Go to the documentation of this file.
2
3namespace System;
4
5internal static class ThrowHelper
6{
8 internal static void ThrowKeyNullException()
9 {
11 }
12
13 [DoesNotReturn]
14 internal static void ThrowArgumentNullException(string name)
15 {
16 throw new ArgumentNullException(name);
17 }
18
19 [DoesNotReturn]
20 internal static void ThrowArgumentNullException(string name, string message)
21 {
22 throw new ArgumentNullException(name, message);
23 }
24
25 [DoesNotReturn]
30
31 [DoesNotReturn]
32 internal static void ThrowOutOfMemoryException()
33 {
34 throw new OutOfMemoryException();
35 }
36}
static string ConcurrentDictionary_TypeOfValueIncorrect
Definition SR.cs:78
Definition SR.cs:7
static void ThrowArgumentNullException(string name, string message)
static void ThrowKeyNullException()
Definition ThrowHelper.cs:8
static void ThrowOutOfMemoryException()
static void ThrowValueNullException()
static void ThrowArgumentNullException(string name)