Passwor re-init

This commit is contained in:
Paul Schneider
2025-09-07 17:43:13 +01:00
parent 111ada56f7
commit 9c5ea692b0
14 changed files with 67 additions and 55 deletions

View File

@ -0,0 +1,18 @@
namespace Yavsc.Services
{
[Serializable]
internal class YavscInfrastructureException : Exception
{
public YavscInfrastructureException()
{
}
public YavscInfrastructureException(string? message) : base(message)
{
}
public YavscInfrastructureException(string? message, Exception? innerException) : base(message, innerException)
{
}
}
}