25 lines
443 B
C#
25 lines
443 B
C#
using System;
|
|
|
|
namespace RedditSharp
|
|
{
|
|
public class CaptchaFailedException : RedditException
|
|
{
|
|
public CaptchaFailedException()
|
|
{
|
|
|
|
}
|
|
|
|
public CaptchaFailedException(string message)
|
|
: base(message)
|
|
{
|
|
|
|
}
|
|
|
|
public CaptchaFailedException(string message, Exception inner)
|
|
: base(message, inner)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|