mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-08-16 21:31:45 +02:00
.config
.run
.workdir
Agent
Common
Controller
Docker
Utils
Phantom.Utils
Collections
Cryptography
IO
Processes
Result
Runtime
AssemblyAttributes.cs
EnvironmentVariables.cs
PosixSignals.cs
ProgramCulture.cs
StopProcedureException.cs
Tasks
Threading
Phantom.Utils.csproj
Phantom.Utils.Actor
Phantom.Utils.Events
Phantom.Utils.Logging
Phantom.Utils.Rpc
Phantom.Utils.Tests
Web
.dockerignore
.gitattributes
.gitignore
AddMigration.bat
AddMigration.sh
Directory.Build.props
Directory.Build.targets
Dockerfile
LICENSE
Packages.props
PhantomPanel.sln
README.md
global.json
11 lines
341 B
C#
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() {}
|
|
}
|