10 lines
248 B
C#
10 lines
248 B
C#
// File: Exceptions/GettingModuleInfoException.cs
|
|
|
|
namespace WebmrAPI.Exceptions
|
|
{
|
|
public class GettingModuleInfoException : ProcessMonitorException
|
|
{
|
|
public GettingModuleInfoException(string message) : base(message) { }
|
|
}
|
|
}
|