Passwor re-init
This commit is contained in:
18
src/Yavsc.Server/Exceptions/YavscInfrastructureException.cs
Normal file
18
src/Yavsc.Server/Exceptions/YavscInfrastructureException.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user