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

14 lines
360 B
C#

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