You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
568 B
21 lines
568 B
11 months ago
|
using System;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace Avalonia.Gif
|
||
|
{
|
||
|
[Serializable]
|
||
|
internal class InvalidGifStreamException : Exception
|
||
|
{
|
||
|
public InvalidGifStreamException() { }
|
||
|
|
||
|
public InvalidGifStreamException(string message)
|
||
|
: base(message) { }
|
||
|
|
||
|
public InvalidGifStreamException(string message, Exception innerException)
|
||
|
: base(message, innerException) { }
|
||
|
|
||
|
protected InvalidGifStreamException(SerializationInfo info, StreamingContext context)
|
||
|
: base(info, context) { }
|
||
|
}
|
||
|
}
|