31 lines
665 B
C#
31 lines
665 B
C#
using System;
|
|
|
|
namespace Hjg.Pngcs
|
|
{
|
|
// Token: 0x02000039 RID: 57
|
|
[Serializable]
|
|
public class PngjException : Exception
|
|
{
|
|
// Token: 0x06000200 RID: 512 RVA: 0x000081BD File Offset: 0x000063BD
|
|
public PngjException(string message, Exception cause)
|
|
: base(message, cause)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000201 RID: 513 RVA: 0x000081C7 File Offset: 0x000063C7
|
|
public PngjException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000202 RID: 514 RVA: 0x000081D0 File Offset: 0x000063D0
|
|
public PngjException(Exception cause)
|
|
: base(cause.Message, cause)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000113 RID: 275
|
|
private const long serialVersionUID = 1L;
|
|
}
|
|
}
|