2025-07-04 00:04:51 +03:00
|
|
|
|
/* This software is licensed by the MIT License, see LICENSE file */
|
|
|
|
|
/* Copyright © 2024-2025 Gregory Lirent */
|
2025-07-03 15:22:40 +03:00
|
|
|
|
|
|
|
|
|
namespace WebmrAPI.Exceptions
|
|
|
|
|
{
|
|
|
|
|
public class MemoryRegionException : ProcessMonitorException
|
|
|
|
|
{
|
|
|
|
|
public MemoryRegionException(string message) : base(message) { }
|
|
|
|
|
}
|
|
|
|
|
}
|