mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
26 lines
529 B
C#
26 lines
529 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
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)
|
|
{
|
|
}
|
|
|
|
protected CantAlignTimeException(
|
|
SerializationInfo info,
|
|
StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
} |