1.0-dev16 (GUI code cleaning, media not found exception handling added)
This commit is contained in:
15
VDownload.Core/Exceptions/MediaNotFoundException.cs
Normal file
15
VDownload.Core/Exceptions/MediaNotFoundException.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Core.Exceptions
|
||||
{
|
||||
public class MediaNotFoundException : Exception
|
||||
{
|
||||
public MediaNotFoundException() { }
|
||||
public MediaNotFoundException(string message) : base(message) { }
|
||||
public MediaNotFoundException(string message, Exception inner) : base(message, inner) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user