You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Jellyfin.Drawing.Skia/SkiaException.cs

27 lines
569 B

using System;
namespace Jellyfin.Drawing.Skia
{
/// <summary>
/// Represents errors that occur during interaction with Skia.
/// </summary>
public class SkiaException : Exception
{
/// <inheritdoc />
public SkiaException() : base()
{
}
/// <inheritdoc />
public SkiaException(string message) : base(message)
{
}
/// <inheritdoc />
public SkiaException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}