mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
* wip * hacky fix for overlapping event text in profiler * move IsResumeGameAfterPluginLoad logic to PluginManager * fix some warnings * handle exceptions properly * remove ability to cancel, rename button to "hide" instead * undo Dalamud.Service refactor for now * warnings * add explainer, show which plugins are still loading * add some text if loading takes more than 3 minutes * undo wrong CS merge
17 lines
697 B
C#
17 lines
697 B
C#
namespace Dalamud.Game.Config;
|
|
|
|
/// <summary>
|
|
/// An exception thrown when a matching config option is not present in the config section.
|
|
/// </summary>
|
|
public class ConfigOptionNotFoundException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ConfigOptionNotFoundException"/> class.
|
|
/// </summary>
|
|
/// <param name="sectionName">Name of the section being accessed.</param>
|
|
/// <param name="configOptionName">Name of the config option that was not found.</param>
|
|
public ConfigOptionNotFoundException(string sectionName, string configOptionName)
|
|
: base($"The option '{configOptionName}' is not available in {sectionName}.")
|
|
{
|
|
}
|
|
}
|