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

14 lines
360 B
C#
Raw Normal View History

using System;
2014-01-08 14:16:39 +00:00
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)
{
}
}
}