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