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

23 lines
717 B
C#
Raw Normal View History

2022-04-10 17:38:34 +02:00
using TINK.MultilingualResources;
namespace TINK.Repository.Exception
2021-05-13 20:03:07 +02:00
{
public class WebConnectFailureException : CommunicationException
{
/// <summary>
/// Returns a hint to fix communication problem.
/// </summary>
public static string GetHintToPossibleExceptionsReasons
2022-04-10 17:38:34 +02:00
=> AppResources.ExceptionTextWebConnectFailureException;
2022-08-30 15:42:25 +02:00
/// <summary>
2021-05-13 20:03:07 +02:00
/// Constructs a communication exeption object.
/// </summary>
2022-08-30 15:42:25 +02:00
/// <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
{
}
}
}