mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
15 lines
No EOL
435 B
C#
15 lines
No EOL
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FFMpegCore.Exceptions
|
|
{
|
|
public class FFProbeProcessException : FFProbeException
|
|
{
|
|
public IReadOnlyCollection<string> ProcessErrors { get; }
|
|
|
|
public FFProbeProcessException(string message, IReadOnlyCollection<string> processErrors, Exception? inner = null) : base(message, inner)
|
|
{
|
|
ProcessErrors = processErrors;
|
|
}
|
|
}
|
|
} |