winmr-api/Exceptions/ProcessAccessDeniedException.cs
2025-07-04 00:04:51 +03:00

11 lines
341 B
C#

/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2024-2025 Gregory Lirent */
namespace WebmrAPI.Exceptions
{
public class ProcessAccessDeniedException : ProcessMonitorException
{
public ProcessAccessDeniedException(string message) : base(message) { }
}
}