From bd49bdcb109a227130d7db6856e659b435d16530 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Wed, 11 Jul 2018 12:37:11 +0300 Subject: Embedded Tango.AnimatedGif ! --- .../Tango.AnimatedGif/Decoding/GifDecoderException.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Software/Visual_Studio/Tango.AnimatedGif/Decoding/GifDecoderException.cs (limited to 'Software/Visual_Studio/Tango.AnimatedGif/Decoding/GifDecoderException.cs') diff --git a/Software/Visual_Studio/Tango.AnimatedGif/Decoding/GifDecoderException.cs b/Software/Visual_Studio/Tango.AnimatedGif/Decoding/GifDecoderException.cs new file mode 100644 index 000000000..7ff8ef6e0 --- /dev/null +++ b/Software/Visual_Studio/Tango.AnimatedGif/Decoding/GifDecoderException.cs @@ -0,0 +1,16 @@ +using System; + +namespace Tango.AnimatedGif.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) { } + } +} -- cgit v1.3.1