v 0.1.2
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// File: Exceptions/GettingModuleInfoException.cs
|
||||
|
||||
namespace WebmrAPI.Exceptions
|
||||
{
|
||||
public class GettingModuleInfoException : ProcessMonitorException
|
||||
{
|
||||
public GettingModuleInfoException(string message) : base(message) { }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// File: Exceptions/MemoryRegionException.cs
|
||||
|
||||
namespace WebmrAPI.Exceptions
|
||||
{
|
||||
public class MemoryRegionException : ProcessMonitorException
|
||||
{
|
||||
public MemoryRegionException(string message) : base(message) { }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// File: Exceptions/ProcessAccessDeniedException.cs
|
||||
|
||||
namespace WebmrAPI.Exceptions
|
||||
{
|
||||
public class ProcessAccessDeniedException : ProcessMonitorException
|
||||
{
|
||||
public ProcessAccessDeniedException(string message) : base(message) { }
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,6 @@
|
||||
namespace WebmrAPI.Exceptions
|
||||
// File: Exceptions/ProcessMonitorException.cs
|
||||
|
||||
namespace WebmrAPI.Exceptions
|
||||
{
|
||||
public class ProcessMonitorException : Exception
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user