2013-01-18 15:55:50 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Response
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
}
|