Ionite
2 years ago
1 changed files with 13 additions and 0 deletions
@ -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…
Reference in new issue