Minecraft-Phantom-Panel/Utils/Phantom.Utils/Runtime/StopProcedureException.cs

11 lines
341 B
C#

namespace Phantom.Utils.Runtime;
/// <summary>
/// Custom exception used to signal a procedure should stop. This exception should not be logged or propagated.
/// </summary>
public sealed class StopProcedureException : Exception {
public static StopProcedureException Instance { get; } = new ();
private StopProcedureException() {}
}