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;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-05-13 20:03:07 +02:00
|
|
|
|
/// Constructs a communication exeption object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="p_strMessage"></param>
|
|
|
|
|
/// <param name="p_oException"></param>
|
|
|
|
|
public WebConnectFailureException(string p_strMessage, System.Exception p_oException) : base(p_strMessage, p_oException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|