34 lines
802 B
C#
34 lines
802 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ICSharpCode.SharpZipLib.LZW
|
|
{
|
|
// Token: 0x0200002F RID: 47
|
|
[Serializable]
|
|
public class LzwException : SharpZipBaseException
|
|
{
|
|
// Token: 0x06000157 RID: 343 RVA: 0x0000917A File Offset: 0x0000817A
|
|
protected LzwException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000158 RID: 344 RVA: 0x00009184 File Offset: 0x00008184
|
|
public LzwException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000159 RID: 345 RVA: 0x0000918C File Offset: 0x0000818C
|
|
public LzwException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600015A RID: 346 RVA: 0x00009195 File Offset: 0x00008195
|
|
public LzwException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|