using System; namespace AsterNET.FastAGI { /// /// The AGIHangupException is thrown if the channel has been hang up while processing the AGIRequest. /// public class AGIHangupException : AGIException { public AGIHangupException() : base("Channel was hung up.") { } } }