mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-15 02:24:14 +01:00
33ab024a60
Former-commit-id: 27fb37700c
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;
|
|
}
|
|
}
|
|
} |