using System; namespace Artemis.Core { /// /// Represents SkiaSharp graphics-context related errors /// public class ArtemisGraphicsContextException : Exception { /// public ArtemisGraphicsContextException() { } /// public ArtemisGraphicsContextException(string message) : base(message) { } /// public ArtemisGraphicsContextException(string message, Exception innerException) : base(message, innerException) { } } }