Files
Dec2017-Script-Dump/Pngcs/PngjExceptionInternal.cs
2026-06-04 11:42:34 +02:00

36 lines
811 B
C#

using System;
namespace Hjg.Pngcs
{
// Token: 0x0200001B RID: 27
[Serializable]
public class PngjExceptionInternal : Exception
{
// Token: 0x060000E6 RID: 230 RVA: 0x00004AC4 File Offset: 0x00002CC4
public PngjExceptionInternal()
{
}
// Token: 0x060000E7 RID: 231 RVA: 0x00004ACC File Offset: 0x00002CCC
public PngjExceptionInternal(string message, Exception cause)
: base(message, cause)
{
}
// Token: 0x060000E8 RID: 232 RVA: 0x00004AD6 File Offset: 0x00002CD6
public PngjExceptionInternal(string message)
: base(message)
{
}
// Token: 0x060000E9 RID: 233 RVA: 0x00004ADF File Offset: 0x00002CDF
public PngjExceptionInternal(Exception cause)
: base(cause.Message, cause)
{
}
// Token: 0x04000087 RID: 135
private const long serialVersionUID = 1L;
}
}