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

org.onetwo.common.commandline.CommandStopException Maven / Gradle / Ivy

There is a newer version: 4.7.2
Show newest version
package org.onetwo.common.commandline;


public class CommandStopException extends CommandLineException {
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 317687896561703415L;
	public static final String DEFAULT_MESSAGE = "退出命令";
	
	public CommandStopException() {
		super(DEFAULT_MESSAGE);
	}

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

	public CommandStopException(String message, String code) {
		super(message, code);
	}

	public CommandStopException(Throwable cause) {
		super(DEFAULT_MESSAGE, cause);
	}

	protected String getDefaultCode(){
		return CommandLineErrorCode.COMMAND_STOP;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy