terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
Error.cs
Go to the documentation of this file.
1using System;
3
4namespace System.Linq
5{
6 // Token: 0x02000007 RID: 7
7 internal static class Error
8 {
9 // Token: 0x06000031 RID: 49 RVA: 0x00002050 File Offset: 0x00000250
10 internal static Exception ArgumentNull(string s)
11 {
12 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
13 }
14
15 // Token: 0x06000032 RID: 50 RVA: 0x00002050 File Offset: 0x00000250
16 internal static Exception ArgumentOutOfRange(string s)
17 {
18 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
19 }
20
21 // Token: 0x06000033 RID: 51 RVA: 0x00002050 File Offset: 0x00000250
22 internal static Exception MoreThanOneElement()
23 {
24 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
25 }
26
27 // Token: 0x06000034 RID: 52 RVA: 0x00002050 File Offset: 0x00000250
28 internal static Exception MoreThanOneMatch()
29 {
30 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
31 }
32
33 // Token: 0x06000035 RID: 53 RVA: 0x00002050 File Offset: 0x00000250
34 internal static Exception NoElements()
35 {
36 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
37 }
38
39 // Token: 0x06000036 RID: 54 RVA: 0x00002050 File Offset: 0x00000250
40 internal static Exception NotSupported()
41 {
42 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
43 }
44 }
45}
static Exception NotSupported()
Definition Error.cs:40
static Exception ArgumentOutOfRange(string s)
Definition Error.cs:16
static Exception ArgumentNull(string s)
Definition Error.cs:10
static Exception MoreThanOneElement()
Definition Error.cs:22
static Exception MoreThanOneMatch()
Definition Error.cs:28
static Exception NoElements()
Definition Error.cs:34