mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
17 lines
553 B
C#
17 lines
553 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace WpfAnimatedGif.Decoding
|
||
|
|
{
|
||
|
|
[Serializable]
|
||
|
|
internal class GifDecoderException : Exception
|
||
|
|
{
|
||
|
|
internal GifDecoderException() { }
|
||
|
|
internal GifDecoderException(string message) : base(message) { }
|
||
|
|
internal GifDecoderException(string message, Exception inner) : base(message, inner) { }
|
||
|
|
protected GifDecoderException(
|
||
|
|
System.Runtime.Serialization.SerializationInfo info,
|
||
|
|
System.Runtime.Serialization.StreamingContext context)
|
||
|
|
: base(info, context) { }
|
||
|
|
}
|
||
|
|
}
|