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