mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-17 13:52:40 +00:00
Convert to .NET SDK type csproj
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user