2026-09-06 16:11:37 +01:00
|
|
|
#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)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|