34 lines
808 B
C#
34 lines
808 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ICSharpCode.SharpZipLib.GZip
|
|
{
|
|
// Token: 0x02000028 RID: 40
|
|
[Serializable]
|
|
public class GZipException : SharpZipBaseException
|
|
{
|
|
// Token: 0x06000110 RID: 272 RVA: 0x00008398 File Offset: 0x00007398
|
|
protected GZipException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000111 RID: 273 RVA: 0x000083A2 File Offset: 0x000073A2
|
|
public GZipException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000112 RID: 274 RVA: 0x000083AA File Offset: 0x000073AA
|
|
public GZipException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000113 RID: 275 RVA: 0x000083B3 File Offset: 0x000073B3
|
|
public GZipException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|