First actual commit
added sources to repository
This commit is contained in:
24
RedditSharp/CaptchaFailedException.cs
Normal file
24
RedditSharp/CaptchaFailedException.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user