12 lines
434 B
C#
12 lines
434 B
C#
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2024-2025 Gregory Lirent */
|
|
|
|
namespace WebmrAPI.Exceptions
|
|
{
|
|
public class ProcessMonitorException : Exception
|
|
{
|
|
public ProcessMonitorException(string message) : base(message) { }
|
|
public ProcessMonitorException(string message, Exception innerException) : base(message, innerException) { }
|
|
}
|
|
}
|