mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
25 lines
611 B
C#
25 lines
611 B
C#
using System;
|
|
|
|
namespace Artemis.Core
|
|
{
|
|
/// <summary>
|
|
/// Represents SkiaSharp graphics-context related errors
|
|
/// </summary>
|
|
public class ArtemisGraphicsContextException : Exception
|
|
{
|
|
/// <inheritdoc />
|
|
public ArtemisGraphicsContextException()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public ArtemisGraphicsContextException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public ArtemisGraphicsContextException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
} |