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

org.javasimon.console.ActionException Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package org.javasimon.console;

/**
 * Exception raised during action execution
 *
 * @author gquintana
 */
public class ActionException extends Exception {
	public static final long serialVersionUID=1;
	public ActionException(String message, Throwable cause) {
		super(message, cause);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy