31 lines
678 B
C#
31 lines
678 B
C#
using System;
|
|
|
|
namespace Hjg.Pngcs
|
|
{
|
|
// Token: 0x0200003C RID: 60
|
|
[Serializable]
|
|
public class PngjOutputException : PngjException
|
|
{
|
|
// Token: 0x06000209 RID: 521 RVA: 0x00008217 File Offset: 0x00006417
|
|
public PngjOutputException(string message, Exception cause)
|
|
: base(message, cause)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600020A RID: 522 RVA: 0x00008221 File Offset: 0x00006421
|
|
public PngjOutputException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600020B RID: 523 RVA: 0x0000822A File Offset: 0x0000642A
|
|
public PngjOutputException(Exception cause)
|
|
: base(cause)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000116 RID: 278
|
|
private const long serialVersionUID = 1L;
|
|
}
|
|
}
|