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

org.tinygroup.menucommand.exception.MenuCommandException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.tinygroup.menucommand.exception;

public class MenuCommandException extends RuntimeException{

	/**
	 * 
	 */
	private static final long serialVersionUID = -2516940153965456346L;

	public MenuCommandException(){
		super();
	}
	
    public MenuCommandException(String message){
		super(message);
	}
    
    public MenuCommandException(String message, Throwable cause){
    	super(message,cause);
    }
    
    public MenuCommandException(Throwable cause){
    	super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy