mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-12 16:26:43 +08:00
Version 5.8
This commit is contained in:
21
vmmjava/leechcore/LeechCoreException.java
Normal file
21
vmmjava/leechcore/LeechCoreException.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package leechcore;
|
||||
|
||||
/**
|
||||
* Runtime Exception used to indicate exceptions from the underlying native API.
|
||||
* @see https://github.com/ufrisk/MemProcFS
|
||||
* @author Ulf Frisk - pcileech@frizk.net
|
||||
*/
|
||||
public class LeechCoreException extends RuntimeException
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 3361783299857781520L;
|
||||
|
||||
public LeechCoreException() {
|
||||
super("Native call to leechcore failed!");
|
||||
}
|
||||
|
||||
public LeechCoreException(String errorMessage) {
|
||||
super(errorMessage);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user