using System; namespace AsterNET.FastAGI { /// /// The AGINetworkException usally wraps an IOException denoting a network problem when talking to the Asterisk server. /// public class AGINetworkException : AGIException { public AGINetworkException(string message, Exception cause) : base(message, cause) { } } }