sharee.bike-App/SharedBusinessLogic/Repository/Exception/WebConnectFailureException.cs

17 lines
434 B
C#
Raw Permalink Normal View History

2024-04-09 12:53:23 +02:00
using ShareeBike.MultilingualResources;
2022-04-10 17:38:34 +02:00
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Repository.Exception
2021-05-13 20:03:07 +02:00
{
2022-09-06 16:08:19 +02:00
public class WebConnectFailureException : CommunicationException
{
/// <summary>
2023-08-31 12:20:06 +02:00
/// Constructs a communication exception object.
2022-09-06 16:08:19 +02:00
/// </summary>
/// <param name="message"></param>
/// <param name="exception"></param>
public WebConnectFailureException(string message, System.Exception exception) : base(message, exception)
{
}
}
2021-05-13 20:03:07 +02:00
}