Files
RedditRandomNumberGiveawayH…/RedditSharp/DuplicateLinkException.cs
Gardient 9583c1afb2 First actual commit
added sources to repository
2015-08-28 21:49:50 +03:00

28 lines
602 B
C#

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)
{
}
}
}