FFMpegCore/FFMpegCore/FFMpeg/Exceptions/FFMpegException.cs
Malte Rosenbjerg 72366d573a Cleanup
2020-05-09 17:53:03 +02:00

26 lines
No EOL
607 B
C#

using System;
namespace FFMpegCore.Exceptions
{
public enum FFMpegExceptionType
{
Dependency,
Conversion,
File,
Operation,
Process
}
public class FFMpegException : Exception
{
public FFMpegException(FFMpegExceptionType type, string message): this(type, message, null) { }
public FFMpegException(FFMpegExceptionType type, string? message = null, Exception? innerException = null)
: base(message, innerException)
{
Type = type;
}
public FFMpegExceptionType Type { get; }
}
}