asternet/Asterisk.2013/Asterisk.NET/FastAGI/Exceptions/AGIHangupException.cs

14 lines
317 B
C#
Raw Normal View History

using System;
2014-01-08 14:16:39 +00:00
namespace AsterNET.FastAGI
{
/// <summary>
/// The AGIHangupException is thrown if the channel has been hang up while processing the AGIRequest.
/// </summary>
public class AGIHangupException : AGIException
{
public AGIHangupException()
: base("Channel was hung up.")
{
}
}
}