com.urbancode.air.ExitCodeException.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-plugin-utils Show documentation
Show all versions of groovy-plugin-utils Show documentation
A set of utility scripts than can be used in community plugins on JazzHub
The newest version!
package com.urbancode.air
class ExitCodeException extends Exception {
/**
* Construct a new ExitCodeException.
*/
public ExitCodeException() {
super();
}
/**
* Construct a new ExitCodeException with the provided message.
*
* @param message A brief description of this exception.
*/
public ExitCodeException(String message) {
super(message);
}
/**
* Construct a new ExitCodeException instance with the provided cause.
*
* @param cause The underlying cause of this exception.
*/
public ExitCodeException(Throwable cause) {
super(cause);
}
/**
* Construct a new ExitCodeException instance with the provided message and cause.
*
* @param message A brief description of the exception.
* @param cause The underlying exception which caused this exception to be emitted.
*/
public ExitCodeException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy