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

com.fathzer.games.util.UncheckedException Maven / Gradle / Ivy

The newest version!
package com.fathzer.games.util;

/** A generic runtime exception to encapsulate checked exceptions
 */
public class UncheckedException extends RuntimeException {
	private static final long serialVersionUID = 1L;

	/** Constructor
	 * @param cause The exception's cause
	 */
	public UncheckedException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy