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.
27 lines
569 B
27 lines
569 B
5 years ago
|
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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|