mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-15 10:35:44 +00:00
11 lines
No EOL
227 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |