initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace Pulsar.Client.Helper.ScreenStuff.DesktopDuplication
|
||||
{
|
||||
/// <summary>
|
||||
/// Exception thrown when an error occurs during desktop duplication operations.
|
||||
/// </summary>
|
||||
public class DesktopDuplicationException : Exception
|
||||
{
|
||||
public DesktopDuplicationException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public DesktopDuplicationException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user