First actual commit
added sources to repository
This commit is contained in:
27
RedditSharp/DuplicateLinkException.cs
Normal file
27
RedditSharp/DuplicateLinkException.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace RedditSharp
|
||||
{
|
||||
/// <summary>
|
||||
/// Exception that gets thrown if you try and submit a duplicate link to a SubReddit
|
||||
/// </summary>
|
||||
public class DuplicateLinkException : RedditException
|
||||
{
|
||||
public DuplicateLinkException()
|
||||
{
|
||||
}
|
||||
|
||||
public DuplicateLinkException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public DuplicateLinkException(string message, Exception inner)
|
||||
: base(message, inner)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user