Files
MemProcFS/vmmjava/vmm/VmmException.java
2023-09-21 23:19:19 +02:00

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);
}
}