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

14 lines
317 B
C#

using System;
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.")
{
}
}
}