31 lines
674 B
C#
31 lines
674 B
C#
using System;
|
|
|
|
namespace Hjg.Pngcs
|
|
{
|
|
// Token: 0x0200003B RID: 59
|
|
[Serializable]
|
|
public class PngjInputException : PngjException
|
|
{
|
|
// Token: 0x06000206 RID: 518 RVA: 0x000081FB File Offset: 0x000063FB
|
|
public PngjInputException(string message, Exception cause)
|
|
: base(message, cause)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000207 RID: 519 RVA: 0x00008205 File Offset: 0x00006405
|
|
public PngjInputException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000208 RID: 520 RVA: 0x0000820E File Offset: 0x0000640E
|
|
public PngjInputException(Exception cause)
|
|
: base(cause)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000115 RID: 277
|
|
private const long serialVersionUID = 1L;
|
|
}
|
|
}
|