Files
XplorePlane/XplorePlane/Services/ImageProcessing/ImageProcessingException.cs
T
2026-04-13 14:36:18 +08:00

15 lines
342 B
C#

using System;
namespace XplorePlane.Services
{
public class ImageProcessingException : Exception
{
public ImageProcessingException(string message) : base(message)
{
}
public ImageProcessingException(string message, Exception innerException) : base(message, innerException)
{
}
}
}