34 lines
792 B
C#
34 lines
792 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ICSharpCode.SharpZipLib.Zip
|
|
{
|
|
// Token: 0x0200005A RID: 90
|
|
[Serializable]
|
|
public class ZipException : SharpZipBaseException
|
|
{
|
|
// Token: 0x0600037F RID: 895 RVA: 0x00012537 File Offset: 0x00011537
|
|
protected ZipException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000380 RID: 896 RVA: 0x00012541 File Offset: 0x00011541
|
|
public ZipException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000381 RID: 897 RVA: 0x00012549 File Offset: 0x00011549
|
|
public ZipException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000382 RID: 898 RVA: 0x00012552 File Offset: 0x00011552
|
|
public ZipException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|
|
}
|