asternet/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerError.cs

22 lines
601 B
C#
Raw Normal View History

using System.Collections.Generic;
2014-01-08 14:16:39 +00:00
namespace AsterNET.Manager.Response
{
2015-01-03 15:37:29 +00:00
/// <summary>
/// Represents an "Response: Error" response received from the asterisk server.
/// The cause for the error is given in the message attribute.
/// </summary>
public class ManagerError : ManagerResponse
{
/// <summary> Creates a new ManagerError.</summary>
public ManagerError()
: base()
{
}
public ManagerError(Dictionary<string, string> attributes)
: base(attributes)
{
}
}
}