1.0-dev6 (Option bar added and code cleaned)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace VDownload.Core.Exceptions
|
||||
{
|
||||
public class TwitchAccessTokenNotFoundException : Exception
|
||||
{
|
||||
public TwitchAccessTokenNotFoundException() { }
|
||||
public TwitchAccessTokenNotFoundException(string message) : base(message) { }
|
||||
public TwitchAccessTokenNotFoundException(string message, Exception inner) :base(message, inner) { }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace VDownload.Core.Exceptions
|
||||
{
|
||||
public class TwitchAccessTokenNotValidException : Exception
|
||||
{
|
||||
public TwitchAccessTokenNotValidException() { }
|
||||
public TwitchAccessTokenNotValidException(string message) : base(message) { }
|
||||
public TwitchAccessTokenNotValidException(string message, Exception inner) : base(message, inner) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user