This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP.Extensions
{
// Token: 0x020019B5 RID: 6581
[Token(Token = "0x20019B5")]
[StructLayout(3)]
public static class ExceptionHelper
{
// Token: 0x0600B0FB RID: 45307 RVA: 0x002959A8 File Offset: 0x00293BA8
[Token(Token = "0x600B0FB")]
[Address(RVA = "0x1C87A40", Offset = "0x1C86440", VA = "0x181C87A40")]
public static Exception ServerClosedTCPStream()
{
return new Exception("TCP Stream closed unexpectedly by the remote server");
}
}
}