Files
studenthousedashboard/StudentHouseDashboard/Logic/Exceptions/DatabaseNetworkException.cs
2023-06-09 11:51:42 +02:00

16 lines
352 B
C#

using System.Net;
namespace Logic.Exceptions
{
public class DatabaseNetworkException : WebException
{
public DatabaseNetworkException(string? message) : base(message)
{
}
public DatabaseNetworkException(string? message, Exception? innerException) : base(message, innerException)
{
}
}
}