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

org.newdawn.slick.SlickException Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.newdawn.slick;

/**
 * A generic exception thrown by everything in the library
 *
 * @author kevin
 */
public class SlickException extends Exception {
	/**
	 * Create a new exception with a detail message
	 * 
	 * @param message The message describing the cause of this exception
	 */
	public SlickException(String message) {
		super(message);
	}

	/**
	 * Create a new exception with a detail message
	 * 
	 * @param message The message describing the cause of this exception
	 * @param e The exception causing this exception to be thrown
	 */
	public SlickException(String message, Throwable e) {
		super(message, e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy