using System;
namespace AsterNET.Manager
{
///
/// A TimeoutException is thrown if a ManagerResponse is not received within the expected time period.
///
public class TimeoutException : Exception
{
///
/// Creates a new TimeoutException with the given message.
///
/// message with details about the timeout.
public TimeoutException(string message)
: base(message)
{
}
}
}