36 lines
826 B
C#
36 lines
826 B
C#
using System;
|
|
|
|
namespace Hjg.Pngcs
|
|
{
|
|
// Token: 0x0200003D RID: 61
|
|
[Serializable]
|
|
public class PngjUnsupportedException : Exception
|
|
{
|
|
// Token: 0x0600020C RID: 524 RVA: 0x00008233 File Offset: 0x00006433
|
|
public PngjUnsupportedException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600020D RID: 525 RVA: 0x0000823B File Offset: 0x0000643B
|
|
public PngjUnsupportedException(string message, Exception cause)
|
|
: base(message, cause)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600020E RID: 526 RVA: 0x00008245 File Offset: 0x00006445
|
|
public PngjUnsupportedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600020F RID: 527 RVA: 0x0000824E File Offset: 0x0000644E
|
|
public PngjUnsupportedException(Exception cause)
|
|
: base(cause.Message, cause)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000117 RID: 279
|
|
private const long serialVersionUID = 1L;
|
|
}
|
|
}
|