mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 15:16:34 +01:00
25 lines
812 B
C#
25 lines
812 B
C#
|
namespace TINK.Model.Repository.Exception
|
|||
|
{
|
|||
|
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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|