mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-02-18 11:02:31 +00:00
19 lines
438 B
C#
19 lines
438 B
C#
![]() |
namespace FFMpegCore.Extensions.Downloader.Exceptions;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Custom exception for FFMpegDownloader
|
|||
|
/// </summary>
|
|||
|
public class FFMpegDownloaderException : Exception
|
|||
|
{
|
|||
|
public string Detail { get; set; } = "";
|
|||
|
|
|||
|
public FFMpegDownloaderException(string message) : base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public FFMpegDownloaderException(string message, string detail) : base(message)
|
|||
|
{
|
|||
|
Detail = detail;
|
|||
|
}
|
|||
|
}
|