All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.fornwall.jelf.ElfException Maven / Gradle / Ivy

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy