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

org.uqbar.arena.ArenaException Maven / Gradle / Ivy

There is a newer version: 3.6.3
Show newest version
package org.uqbar.arena;

/**
 * Base class for all arena exceptions
 * 
 * @author jfernandes
 */
public class ArenaException extends RuntimeException {

	private static final long serialVersionUID = -2612636878670001518L;

	public ArenaException(Exception cause) {
		super(cause);
	}

	public ArenaException(String message, Exception cause) {
		super(message, cause);
	}

	public ArenaException(String message) {
		super(message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy