public MissingModuleException(XmasUniversal host, Type moduleType) : base("Module Type " + moduleType.Name + " on type: " + host.GetType().Name + " is missing") { this.host = host; this.moduleType = moduleType; }
/// <summary> /// Adds an XmasUniversal to a list of Universals that has an Action Failed/Started/Completed event raised on them /// </summary> /// <param name="xuni">XmasUniversal to have an ActionEvent raised on it</param> public void AddRaiseActionEvent(XmasUniversal xuni) { this.raiseActionEvtOn.Add(xuni); }