mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
Make Detail prop on FFMpegDownloaderException a readonly field
This commit is contained in:
parent
abf2ab5ee7
commit
8b8701ef44
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class FFMpegDownloaderException : Exception
|
public class FFMpegDownloaderException : Exception
|
||||||
{
|
{
|
||||||
public string Detail { get; set; } = "";
|
public readonly string Detail = "";
|
||||||
|
|
||||||
public FFMpegDownloaderException(string message) : base(message)
|
public FFMpegDownloaderException(string message) : base(message)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue