
com.fathzer.games.util.UncheckedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of games-core Show documentation
Show all versions of games-core Show documentation
A core library to help implement two players games.
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