1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Plugins - Clarify lock file exception

This commit is contained in:
Robert 2023-03-06 22:01:08 +01:00
parent cbbd2272c6
commit 52d53f1d23

View File

@ -14,7 +14,7 @@ public class ArtemisPluginLockException : Exception
private static string CreateExceptionMessage(Exception? innerException) private static string CreateExceptionMessage(Exception? innerException)
{ {
return innerException != null return innerException != null
? "Found a lock file, skipping load, see inner exception for last known exception." ? "Found a lock file, skipping automatic load, see inner exception for last known exception. Please manually re-enable the plugin."
: "Found a lock file, skipping load."; : "Found a lock file, skipping automatic load. Please manually re-enable the plugin.";
} }
} }