16 lines
352 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|