using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Transport
{
/// <summary>
/// Represents a 'Keep Alive' timeout exception.
/// </summary>
/// <seealso cref="System.TimeoutException" />
public class KeepAliveException : TimeoutException
{
/// <summary>
/// Initializes a new instance of the <see cref="KeepAliveException"/> class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public KeepAliveException(String message) : base(message)
{
}
}
}