2021-06-26 20:57:55 +02:00
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return "Ist WLAN verfügbar/ Mobilfunknetz vefügbar und mobile Daten aktiviert / ... ?";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 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)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|