//-----------------------------------------------------------------------
//
// CErrorResponseMessage belongs to Copyright (c) Origtek. All rights reserved.
//
//-----------------------------------------------------------------------
namespace OT.COM.SignalerMessage
{
///
/// Error response message
///
public class CErrorResponseMessage : CResponseMessage
{
///
/// Initializes a new instance of the class
///
///
/// Error message
///
///
/// Origin Request
///
public CErrorResponseMessage(string i_sMsg, CRequestMessage i_crm = null)
{
this.result = EResponseResult.RR_FALSE;
this.msg = i_sMsg;
if (i_crm != null)
{
this.project = i_crm.project;
this.projectver = i_crm.projectver;
this.method = i_crm.method;
}
}
}
}