mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-19 08:19:48 +08:00
13 lines
347 B
C#
13 lines
347 B
C#
namespace BetterGenshinImpact.GameTask.AutoGeniusInvokation.Exception; // TODO: change this namespace to BetterGenshinImpact.GameTask.Common.Exception
|
|
|
|
public class RetryNoCountException : System.Exception
|
|
{
|
|
public RetryNoCountException() : base()
|
|
{
|
|
}
|
|
|
|
public RetryNoCountException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|