net.fornwall.jelf.ElfException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unidbg Show documentation
Show all versions of unidbg Show documentation
Allows you to emulate an Android ARM32 and/or ARM64 native library
package net.fornwall.jelf;
/**
* Generic exception class for all exceptions which occur in this package. Since
* there is no mechanism built into this library for recovering from errors, the
* best clients can do is display the error string.
*/
public class ElfException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ElfException(String message) {
super(message);
}
public ElfException(Throwable cause) {
super(cause);
}
public ElfException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy