1.0-dev6 (Option bar added and code cleaned)

This commit is contained in:
2022-02-19 01:38:37 +01:00
Unverified
parent 3c274ff4fc
commit 96a7953500
51 changed files with 856 additions and 423 deletions

View File

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

View File

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