mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-20 00:16:36 +08:00
添加项目文件。
This commit is contained in:
16
WpfAnimatedGif/Decoding/GifDecoderException.cs
Normal file
16
WpfAnimatedGif/Decoding/GifDecoderException.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user