12 lines
338 B
C#
12 lines
338 B
C#
using System;
|
|
|
|
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) { }
|
|
}
|
|
}
|