2025-07-03 15:22:40 +03:00
|
|
|
|
// File: Exceptions/ProcessMonitorException.cs
|
|
|
|
|
|
|
|
|
|
namespace WebmrAPI.Exceptions
|
2025-07-02 16:06:50 +03:00
|
|
|
|
{
|
|
|
|
|
public class ProcessMonitorException : Exception
|
|
|
|
|
{
|
|
|
|
|
public ProcessMonitorException(string message) : base(message) { }
|
|
|
|
|
public ProcessMonitorException(string message, Exception innerException) : base(message, innerException) { }
|
|
|
|
|
}
|
|
|
|
|
}
|