using TINK.MultilingualResources; namespace TINK.Repository.Exception { public class WebConnectFailureException : CommunicationException { /// /// Returns a hint to fix communication problem. /// public static string GetHintToPossibleExceptionsReasons => AppResources.ExceptionTextWebConnectFailureException; /// /// Constructs a communication exeption object. /// /// /// public WebConnectFailureException(string message, System.Exception exception) : base(message, exception) { } } }