From a5db5f4dd8153d6ddfcbcd7d9a3c86d3f8e93e89 Mon Sep 17 00:00:00 2001 From: Ionite Date: Thu, 25 May 2023 14:46:46 -0400 Subject: [PATCH] Add ProcessException --- StabilityMatrix/Exceptions/ProcessException.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 StabilityMatrix/Exceptions/ProcessException.cs diff --git a/StabilityMatrix/Exceptions/ProcessException.cs b/StabilityMatrix/Exceptions/ProcessException.cs new file mode 100644 index 00000000..1613b588 --- /dev/null +++ b/StabilityMatrix/Exceptions/ProcessException.cs @@ -0,0 +1,13 @@ +using System; + +namespace StabilityMatrix.Exceptions; + +/// +/// Exception that is thrown when a process fails. +/// +public class ProcessException: Exception +{ + public ProcessException(string message) : base(message) + { + } +} \ No newline at end of file