Browse Source

Add ProcessException

pull/5/head
Ionite 2 years ago
parent
commit
a5db5f4dd8
No known key found for this signature in database
  1. 13
      StabilityMatrix/Exceptions/ProcessException.cs

13
StabilityMatrix/Exceptions/ProcessException.cs

@ -0,0 +1,13 @@
using System;
namespace StabilityMatrix.Exceptions;
/// <summary>
/// Exception that is thrown when a process fails.
/// </summary>
public class ProcessException: Exception
{
public ProcessException(string message) : base(message)
{
}
}
Loading…
Cancel
Save