SkiaException.cs 569 B

1234567891011121314151617181920212223242526
  1. using System;
  2. namespace Jellyfin.Drawing.Skia
  3. {
  4. /// <summary>
  5. /// Represents errors that occur during interaction with Skia.
  6. /// </summary>
  7. public class SkiaException : Exception
  8. {
  9. /// <inheritdoc />
  10. public SkiaException() : base()
  11. {
  12. }
  13. /// <inheritdoc />
  14. public SkiaException(string message) : base(message)
  15. {
  16. }
  17. /// <inheritdoc />
  18. public SkiaException(string message, Exception innerException)
  19. : base(message, innerException)
  20. {
  21. }
  22. }
  23. }