Files
VDownload/VDownload.Sources/VDownload.Sources.Common/MediaSearchException.cs

30 lines
613 B
C#
Raw Normal View History

2024-02-13 02:59:40 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VDownload.Sources.Common
2024-02-13 02:59:40 +01:00
{
public class MediaSearchException : Exception
{
#region PROPERTIES
public string StringCode { get; protected set; }
#endregion
2024-02-13 02:59:40 +01:00
#region CONSTRUCTORS
2024-02-13 02:59:40 +01:00
public MediaSearchException(string stringCode) : this(stringCode, stringCode) { }
public MediaSearchException(string stringCode, string message) : base(message)
{
StringCode = stringCode;
}
2024-02-13 02:59:40 +01:00
#endregion
}
}