yavsc/src/Yavsc.Server/Exceptions/YavscInfrastructureException.cs

20 lines
455 B
C#
Raw Normal View History

#nullable enable annotations
2025-09-07 17:43:13 +01:00
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)
{
}
}
}