mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13: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
16 lines
402 B
C#
Executable file
16 lines
402 B
C#
Executable file
namespace Dalamud.Utility.Signatures;
|
|
|
|
/// <summary>
|
|
/// An exception for signatures.
|
|
/// </summary>
|
|
public class SignatureException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SignatureException"/> class.
|
|
/// </summary>
|
|
/// <param name="message">Message.</param>
|
|
internal SignatureException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|