Added some error handling.

This commit is contained in:
Darren Ohonba - Evans
2024-05-25 14:25:52 +01:00
parent 5d2b6543be
commit f55c4cad9a
5 changed files with 140 additions and 32 deletions

View File

@@ -142,5 +142,29 @@ namespace AsusFanControlGUI.Properties {
this["updateSpeed"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool wasError {
get {
return ((bool)(this["wasError"]));
}
set {
this["wasError"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string errorMsg {
get {
return ((string)(this["errorMsg"]));
}
set {
this["errorMsg"] = value;
}
}
}
}