This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,35 @@
using System;
using System.IO;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO
{
// Token: 0x0200193E RID: 6462
[Token(Token = "0x200193E")]
[Serializable]
public class StreamOverflowException : IOException
{
// Token: 0x0600996F RID: 39279 RVA: 0x001FD3EC File Offset: 0x001FB5EC
[Token(Token = "0x600996F")]
[Address(RVA = "0x18E71B0", Offset = "0x18E5FB0", VA = "0x1818E71B0")]
public StreamOverflowException()
{
}
// Token: 0x06009970 RID: 39280 RVA: 0x001FD400 File Offset: 0x001FB600
[Token(Token = "0x6009970")]
[Address(RVA = "0x424140", Offset = "0x422F40", VA = "0x180424140")]
public StreamOverflowException(string message)
: base(message)
{
}
// Token: 0x06009971 RID: 39281 RVA: 0x001FD414 File Offset: 0x001FB614
[Token(Token = "0x6009971")]
[Address(RVA = "0x18E71C0", Offset = "0x18E5FC0", VA = "0x1818E71C0")]
public StreamOverflowException(string message, Exception exception)
: base(message, exception)
{
}
}
}