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
+30
View File
@@ -0,0 +1,30 @@
using System;
namespace Hjg.Pngcs
{
// Token: 0x0200003A RID: 58
[Serializable]
public class PngjBadCrcException : PngjException
{
// Token: 0x06000203 RID: 515 RVA: 0x000081DF File Offset: 0x000063DF
public PngjBadCrcException(string message, Exception cause)
: base(message, cause)
{
}
// Token: 0x06000204 RID: 516 RVA: 0x000081E9 File Offset: 0x000063E9
public PngjBadCrcException(string message)
: base(message)
{
}
// Token: 0x06000205 RID: 517 RVA: 0x000081F2 File Offset: 0x000063F2
public PngjBadCrcException(Exception cause)
: base(cause)
{
}
// Token: 0x04000114 RID: 276
private const long serialVersionUID = 1L;
}
}