2013-01-18 15:55:50 +00:00
|
|
|
using System;
|
2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A TimeoutException is thrown if a ManagerResponse is not received within the expected time period.
|
|
|
|
/// </summary>
|
|
|
|
public class TimeoutException : Exception
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a new TimeoutException with the given message.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="message">message with details about the timeout.</param>
|
|
|
|
public TimeoutException(string message)
|
|
|
|
: base(message)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|