FFMpegCore/FFMpegCore/FFProbe/Exceptions/FFProbeException.cs
2021-07-16 01:02:38 +02:00

11 lines
No EOL
227 B
C#

using System;
namespace FFMpegCore.Exceptions
{
public class FFProbeException : Exception
{
public FFProbeException(string message, Exception? inner = null) : base(message, inner)
{
}
}
}