mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
项目结构调整
This commit is contained in:
16
Others/WpfAnimatedGif/Decoding/GifDecoderException.cs
Normal file
16
Others/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