Files
Nebula-Auth/NebulaAuth/Model/Exceptions/CantAlignTime.cs
T
Давид Чернопятов 1e65cd4a06 1.5.3 progress. Added multi-confirmation and code refactorings
NebulaAuth:
- Added MAAC and PortableMaClient for multi-confirmations
- Code clean-ups, removed unused classes, refactoring of old files
- SteamLib updated
- Localization and UI updates
- Dependcies updated to the last version

LegacyConverter:
 - Added mode to decrypt mafiles
2024-10-16 16:31:53 +03:00

19 lines
354 B
C#

using System;
namespace NebulaAuth.Model.Exceptions;
[Serializable]
public class CantAlignTimeException : Exception
{
public CantAlignTimeException()
{
}
public CantAlignTimeException(string message) : base(message)
{
}
public CantAlignTimeException(string message, Exception inner) : base(message, inner)
{
}
}