public NSApiErrorResponse(string code, string description, ExceptionResponse ex) { Code = code; Description = description; ExceptionData = ex; }
public NSApiErrorResponse() { Code = ""; Description = ""; ExceptionData = new ExceptionResponse(); }