Files
2026-06-04 11:42:34 +02:00

34 lines
798 B
C#

using System;
using System.Runtime.Serialization;
namespace ICSharpCode.SharpZipLib.BZip2
{
// Token: 0x02000005 RID: 5
[Serializable]
public class BZip2Exception : SharpZipBaseException
{
// Token: 0x06000009 RID: 9 RVA: 0x00002A01 File Offset: 0x00001A01
protected BZip2Exception(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
// Token: 0x0600000A RID: 10 RVA: 0x00002A0B File Offset: 0x00001A0B
public BZip2Exception()
{
}
// Token: 0x0600000B RID: 11 RVA: 0x00002A13 File Offset: 0x00001A13
public BZip2Exception(string message)
: base(message)
{
}
// Token: 0x0600000C RID: 12 RVA: 0x00002A1C File Offset: 0x00001A1C
public BZip2Exception(string message, Exception exception)
: base(message, exception)
{
}
}
}