34 lines
792 B
C#
34 lines
792 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ICSharpCode.SharpZipLib.Tar
|
|
{
|
|
// Token: 0x02000031 RID: 49
|
|
[Serializable]
|
|
public class TarException : SharpZipBaseException
|
|
{
|
|
// Token: 0x06000170 RID: 368 RVA: 0x00009963 File Offset: 0x00008963
|
|
protected TarException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000171 RID: 369 RVA: 0x0000996D File Offset: 0x0000896D
|
|
public TarException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000172 RID: 370 RVA: 0x00009975 File Offset: 0x00008975
|
|
public TarException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000173 RID: 371 RVA: 0x0000997E File Offset: 0x0000897E
|
|
public TarException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|
|
}
|