You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
244 B
11 lines
244 B
1 year ago
|
namespace StabilityMatrix.Core.Exceptions;
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// Exception that is thrown when a process fails.
|
||
|
/// </summary>
|
||
2 years ago
|
public class ProcessException : Exception
|
||
2 years ago
|
{
|
||
|
public ProcessException(string message) : base(message)
|
||
|
{
|
||
|
}
|
||
|
}
|