mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-05-07 13:56:31 +08:00
26 lines
595 B
Java
26 lines
595 B
Java
package vmm;
|
|
|
|
/**
|
|
* 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 VmmException extends RuntimeException
|
|
{
|
|
|
|
private static final long serialVersionUID = 3361783299853681520L;
|
|
|
|
public VmmException() {
|
|
super("Native call to vmm failed!");
|
|
}
|
|
|
|
public VmmException(String errorMessage) {
|
|
super(errorMessage);
|
|
}
|
|
|
|
public VmmException(String errorMessage, Throwable t) {
|
|
super(errorMessage, t);
|
|
}
|
|
|
|
}
|