34 lines
847 B
C#
34 lines
847 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ICSharpCode.SharpZipLib.Tar
|
|
{
|
|
// Token: 0x02000032 RID: 50
|
|
[Serializable]
|
|
public class InvalidHeaderException : TarException
|
|
{
|
|
// Token: 0x06000174 RID: 372 RVA: 0x00009988 File Offset: 0x00008988
|
|
protected InvalidHeaderException(SerializationInfo information, StreamingContext context)
|
|
: base(information, context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000175 RID: 373 RVA: 0x00009992 File Offset: 0x00008992
|
|
public InvalidHeaderException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000176 RID: 374 RVA: 0x0000999A File Offset: 0x0000899A
|
|
public InvalidHeaderException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000177 RID: 375 RVA: 0x000099A3 File Offset: 0x000089A3
|
|
public InvalidHeaderException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|
|
}
|