This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,33 @@
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)
{
}
}
}