mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-02 10:45:22 +08:00
13 lines
326 B
C#
13 lines
326 B
C#
namespace BetterGenshinImpact.GameTask.AutoGeniusInvokation.Exception; // TODO: change this namespace to BetterGenshinImpact.GameTask.Common.Exception
|
|
|
|
public class RetryException : System.Exception
|
|
{
|
|
public RetryException() : base()
|
|
{
|
|
}
|
|
|
|
public RetryException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|