1.0-dev17 (Subscription page created)
This commit is contained in:
15
VDownload.Core/Exceptions/SubscriptionExistsException.cs
Normal file
15
VDownload.Core/Exceptions/SubscriptionExistsException.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 SubscriptionExistsException : Exception
|
||||
{
|
||||
public SubscriptionExistsException() { }
|
||||
public SubscriptionExistsException(string message) : base(message) { }
|
||||
public SubscriptionExistsException(string message, Exception inner) : base(message, inner) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user