asternet/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerError.cs
2015-01-03 15:37:29 +00:00

22 lines
601 B
C#

using System.Collections.Generic;
namespace AsterNET.Manager.Response
{
/// <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)
{
}
}
}