mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-06 11:55:31 +08:00
12 lines
245 B
C#
12 lines
245 B
C#
namespace BetterGenshinImpact.GameTask.AutoGeniusInvokation.Exception;
|
|
|
|
public class RetryException : System.Exception
|
|
{
|
|
public RetryException() : base()
|
|
{
|
|
}
|
|
|
|
public RetryException(string message) : base(message)
|
|
{
|
|
}
|
|
} |