mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-07 13:56:31 +08:00
22 lines
504 B
Java
22 lines
504 B
Java
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);
|
|
}
|
|
|
|
}
|