using System.Collections.Generic;
namespace AsterNET.Manager.Response
{
///
/// Represents an "Response: Error" response received from the asterisk server.
/// The cause for the error is given in the message attribute.
///
public class ManagerError : ManagerResponse
{
/// Creates a new ManagerError.
public ManagerError()
: base()
{
}
public ManagerError(Dictionary attributes)
: base(attributes)
{
}
}
}