mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
22 lines
717 B
C#
22 lines
717 B
C#
using TINK.MultilingualResources;
|
|
|
|
namespace TINK.Repository.Exception
|
|
{
|
|
public class WebConnectFailureException : CommunicationException
|
|
{
|
|
/// <summary>
|
|
/// Returns a hint to fix communication problem.
|
|
/// </summary>
|
|
public static string GetHintToPossibleExceptionsReasons
|
|
=> AppResources.ExceptionTextWebConnectFailureException;
|
|
|
|
/// <summary>
|
|
/// Constructs a communication exeption object.
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
/// <param name="exception"></param>
|
|
public WebConnectFailureException(string message, System.Exception exception) : base(message, exception)
|
|
{
|
|
}
|
|
}
|
|
}
|