2022-04-10 17:38:34 +02:00
|
|
|
|
using TINK.MultilingualResources;
|
|
|
|
|
|
|
|
|
|
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>
|
|
|
|
|
/// Returns a hint to fix communication problem.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static string GetHintToPossibleExceptionsReasons
|
|
|
|
|
=> AppResources.ExceptionTextWebConnectFailureException;
|
2022-04-10 17:38:34 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs a communication exeption object.
|
|
|
|
|
/// </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
|
|
|
|
}
|