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

com.github.fonimus.ssh.shell.postprocess.PostProcessorException Maven / Gradle / Ivy

The newest version!
package com.github.fonimus.ssh.shell.postprocess;

/**
 * Post processor exception
 */
public class PostProcessorException
		extends Exception {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy