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

17 lines
422 B
C#
Raw Normal View History

2023-08-31 12:20:06 +02:00
using TINK.MultilingualResources;
2022-04-10 17:38:34 +02:00
namespace TINK.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
}