namespace TINK.Repository.Exception { public class WebConnectFailureException : CommunicationException { /// /// Returns a hint to fix communication problem. /// public static string GetHintToPossibleExceptionsReasons { get { return "Ist WLAN verfügbar/ Mobilfunknetz vefügbar und mobile Daten aktiviert / ... ?"; } } /// /// Constructs a communication exeption object. /// /// /// public WebConnectFailureException(string p_strMessage, System.Exception p_oException) : base(p_strMessage, p_oException) { } } }