mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 09:49:07 +00:00
28 lines
531 B
C#
28 lines
531 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace WPFMediaKit;
|
|
|
|
public class WPFMediaKitException : Exception
|
|
{
|
|
public WPFMediaKitException()
|
|
: base()
|
|
{
|
|
}
|
|
|
|
public WPFMediaKitException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public WPFMediaKitException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected WPFMediaKitException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
}
|