15 lines
342 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |