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 jelf Show documentation
Show all versions of jelf Show documentation
ELF parsing library in java
The newest version!
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);
}
}