mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
18 lines
413 B
C#
18 lines
413 B
C#
using System;
|
|
|
|
namespace Artemis.UI.Linux.Providers.Input;
|
|
|
|
public class ArtemisLinuxInputProviderException : Exception
|
|
{
|
|
public ArtemisLinuxInputProviderException()
|
|
{
|
|
}
|
|
|
|
public ArtemisLinuxInputProviderException(string? message) : base(message)
|
|
{
|
|
}
|
|
|
|
public ArtemisLinuxInputProviderException(string? message, Exception? innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
} |