34 lines
833 B
C#
34 lines
833 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ICSharpCode.SharpZipLib
|
|
{
|
|
// Token: 0x02000004 RID: 4
|
|
[Serializable]
|
|
public class SharpZipBaseException : ApplicationException
|
|
{
|
|
// Token: 0x06000005 RID: 5 RVA: 0x000029DC File Offset: 0x000019DC
|
|
protected SharpZipBaseException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000006 RID: 6 RVA: 0x000029E6 File Offset: 0x000019E6
|
|
public SharpZipBaseException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000007 RID: 7 RVA: 0x000029EE File Offset: 0x000019EE
|
|
public SharpZipBaseException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000008 RID: 8 RVA: 0x000029F7 File Offset: 0x000019F7
|
|
public SharpZipBaseException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|