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

org.openbakery.coverage.command.CommandRunnerException.groovy Maven / Gradle / Ivy

There is a newer version: 0.9.4
Show newest version
package org.openbakery.coverage.command

/**
 * Created by René Pirringer
 * The CommandRunnerException is thrown by the CommandRunner if something went wrong
 */
class CommandRunnerException extends IllegalStateException {

	CommandRunnerException() {
		super()
	}

	CommandRunnerException(String s) {
		super(s)
	}

	CommandRunnerException(String s, Throwable throwable) {
		super(s, throwable)
	}

	CommandRunnerException(Throwable throwable) {
		super(throwable)
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy