mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
22 lines
739 B
C#
22 lines
739 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="p_strMessage"></param>
|
|
/// <param name="p_oException"></param>
|
|
public WebConnectFailureException(string p_strMessage, System.Exception p_oException) : base(p_strMessage, p_oException)
|
|
{
|
|
}
|
|
}
|
|
}
|