asternet/Asterisk.2013/Asterisk.NET/Manager/Exceptions/TimeoutException.cs
2014-01-08 14:16:39 +00:00

18 lines
484 B
C#

using System;
namespace AsterNET.Manager
{
/// <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)
{
}
}
}